We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02a969d commit dcf61c7Copy full SHA for dcf61c7
dirsearch.py
@@ -20,7 +20,6 @@
20
21
import sys
22
23
-from lib.controller.controller import Controller
24
from lib.core.data import options
25
from lib.core.options import parse_options
26
@@ -37,6 +36,8 @@ def main():
37
36
if input("[c]ontinue / [q]uit: ") != "c":
38
exit(1)
39
+ from lib.controller.controller import Controller
40
+
41
Controller()
42
43
lib/core/data.py
@@ -96,6 +96,7 @@
96
"quiet": False,
97
"disable_cli": False,
98
"output_file": None,
99
+ "output_table": None,
100
"output_formats": None,
101
"mysql_url": None,
102
"postgres_url": None,
0 commit comments