Skip to content

Commit ee4cef1

Browse files
authored
Merge pull request #95 from 0x0D1n/master
Issue when Loading the Options file #87
2 parents 2387f6b + 9ba34ec commit ee4cef1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nosqlmap.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -405,11 +405,11 @@ def options():
405405

406406
elif select == "0":
407407
loadPath = raw_input("Enter file name to load: ")
408-
cvsOpt = []
408+
csvOpt = []
409409
try:
410410
with open(loadPath,"r") as fo:
411411
for line in fo:
412-
cvsOpt.append(line.rstrip())
412+
csvOpt.append(line.rstrip())
413413
except IOError as e:
414414
print "I/O error({0}): {1}".format(e.errno, e.strerror)
415415
raw_input("error reading file. Press enter to continue...")

0 commit comments

Comments
 (0)