[tor-commits] [sbws/master] Remove init and add config arg

pastly at torproject.org pastly at torproject.org
Thu Aug 9 14:21:20 UTC 2018


commit 15d1748764d4c4fd0daa04f3212639bbc22b4742
Author: juga0 <juga at riseup.net>
Date:   Wed Jul 18 19:57:41 2018 +0000

    Remove init and add config arg
---
 sbws/util/parser.py | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/sbws/util/parser.py b/sbws/util/parser.py
index f2fc828..1ef15cc 100644
--- a/sbws/util/parser.py
+++ b/sbws/util/parser.py
@@ -1,7 +1,6 @@
 import sbws.core.cleanup
 import sbws.core.scanner
 import sbws.core.generate
-import sbws.core.init
 import sbws.core.stats
 from sbws import __version__
 
@@ -22,12 +21,11 @@ def create_parser():
     p.add_argument('--log-level',
                    choices=['debug', 'info', 'warning', 'error', 'critical'],
                    help='Override the sbws log level')
-    p.add_argument('-d', '--directory', default=_default_dot_sbws_dname(),
-                   help='Name of the .sbws directory')
+    p.add_argument('-c', '--config',
+                   help='Path the sbws config file')
     sub = p.add_subparsers(dest='command')
     sbws.core.cleanup.gen_parser(sub)
     sbws.core.scanner.gen_parser(sub)
     sbws.core.generate.gen_parser(sub)
-    sbws.core.init.gen_parser(sub)
     sbws.core.stats.gen_parser(sub)
     return p





More information about the tor-commits mailing list