summaryrefslogtreecommitdiffstats
path: root/cnucnu/cvs.py
diff options
context:
space:
mode:
Diffstat (limited to 'cnucnu/cvs.py')
-rwxr-xr-xcnucnu/cvs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cnucnu/cvs.py b/cnucnu/cvs.py
index bc19d93..e4e4fb1 100755
--- a/cnucnu/cvs.py
+++ b/cnucnu/cvs.py
@@ -22,13 +22,13 @@
import pycurl
import StringIO
from helper import secure_download
-from config import Config
+from config import global_config
class CVS(object):
""" cainfo: filename :-/
"""
def __init__(self, viewvc_url="", cainfo=""):
- defaults = Config().config["cvs"]
+ defaults = global_config.config["cvs"]
if not viewvc_url:
viewvc_url = defaults["viewvc_url"]