From bcf39b09ea99f99e7fb2a78612645b38b9e1d909 Mon Sep 17 00:00:00 2001 From: LzSkyline Date: Wed, 23 Aug 2017 20:34:29 +0800 Subject: [PATCH] add strip for path variable --- lib/utils/brute.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/utils/brute.py b/lib/utils/brute.py index 2c41f4211..6d8b4b4f6 100644 --- a/lib/utils/brute.py +++ b/lib/utils/brute.py @@ -81,6 +81,7 @@ def tableExists(tableFile, regex=None): if choice == '2': message = "what's the custom common tables file location?\n" tableFile = readInput(message) or tableFile + tableFile = tableFile.strip('"') infoMsg = "checking table existence using items from '%s'" % tableFile logger.info(infoMsg)