diff options
author | Clayton G. Hobbs <clay@lakeserv.net> | 2015-12-27 15:17:04 -0500 |
---|---|---|
committer | Clayton G. Hobbs <clay@lakeserv.net> | 2015-12-27 15:17:04 -0500 |
commit | c5578954ed54a8569014105fd75aa5fe07ba1c89 (patch) | |
tree | 7ef9eaf0e414f86ba4c4a7f112115893303ad7a9 | |
parent | 25ebc8fe8b34939507d741636a11816cb4f11db2 (diff) |
Removed prints from config.py
-rw-r--r-- | config.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/config.py b/config.py index 482e929..48db1d6 100644 --- a/config.py +++ b/config.py @@ -74,9 +74,7 @@ class Config: self._read_options_file() # Parse command-line arguments, overriding config file as appropriate - self.args = self.parser.parse_args(namespace=self.options) - print(self.args) - print(self.options) + self.parser.parse_args(namespace=self.options) def _make_dir(self, directory): if not os.path.exists(directory): |