Skip to content

Commit 33897f6

Browse files
committed
Removed recursion from output toggle
1 parent 79d4382 commit 33897f6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

nosqlmap.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,13 +258,11 @@ def options():
258258
print "Verbose output enabled."
259259
verb = "ON"
260260
optionSet[6] = True
261-
options()
262261

263-
if verb == "ON":
262+
elif verb == "ON":
264263
print "Verbose output disabled."
265264
verb = "OFF"
266265
optionSet[6] = True
267-
options()
268266

269267
elif select == "8":
270268
loadPath = raw_input("Enter file name to load: ")

0 commit comments

Comments
 (0)