cleanup for using the config dir properly, and not an hard-wired ~/.sfi/
[sface.git] / sface / config.py
index bf94cbc..edb2924 100644 (file)
@@ -1,7 +1,7 @@
 # config for sface 
 # uses in this order
 # command-line args
-# ~/.sfi/sfi_config
+# <configdir>/sfi_config
 ###
 
 import os
@@ -28,9 +28,8 @@ class Config:
         ]
 
     def __init__ (self):
-        print 'WARNING - should pass config dir'
-        self.dirname=os.path.expanduser("~/.sfi/")
-        self.read_config()
+        # no need to do anything here, we need set_dirname later on
+        pass
 
     def get_dirname (self):
         return self.dirname