Thanks to visit codestin.com Credit goes to github.com
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 95ed6b7 commit 0355e29Copy full SHA for 0355e29
1 file changed
lib/core/common.py
@@ -660,10 +660,10 @@ def getDocRoot():
660
661
if choice == "2":
662
message = "please provide the web server document root: "
663
- docRoot = readInput(message).split(',')
+ docRoot = readInput(message, default="").split(',')
664
elif choice == "3":
665
message = "what's the list file location?\n"
666
- listPath = readInput(message)
+ listPath = readInput(message, default="")
667
checkFile(listPath)
668
docRoot = getFileItems(listPath)
669
elif choice == "4":
0 commit comments