Browse Source

Removed prints from config.py

Clara Hobbs 8 years ago
parent
commit
c5578954ed
1 changed files with 1 additions and 3 deletions
  1. 1
    3
      config.py

+ 1
- 3
config.py View File

@@ -74,9 +74,7 @@ class Config:
74 74
         self._read_options_file()
75 75
 
76 76
         # Parse command-line arguments, overriding config file as appropriate
77
-        self.args = self.parser.parse_args(namespace=self.options)
78
-        print(self.args)
79
-        print(self.options)
77
+        self.parser.parse_args(namespace=self.options)
80 78
 
81 79
     def _make_dir(self, directory):
82 80
         if not os.path.exists(directory):

Loading…
Cancel
Save