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.
2 parents 2387f6b + 9ba34ec commit ee4cef1Copy full SHA for ee4cef1
1 file changed
nosqlmap.py
@@ -405,11 +405,11 @@ def options():
405
406
elif select == "0":
407
loadPath = raw_input("Enter file name to load: ")
408
- cvsOpt = []
+ csvOpt = []
409
try:
410
with open(loadPath,"r") as fo:
411
for line in fo:
412
- cvsOpt.append(line.rstrip())
+ csvOpt.append(line.rstrip())
413
except IOError as e:
414
print "I/O error({0}): {1}".format(e.errno, e.strerror)
415
raw_input("error reading file. Press enter to continue...")
0 commit comments