make -n working not only in combination with -a

fixes #107
This commit is contained in:
Mateusz Konieczny 2016-03-18 21:27:09 +01:00
parent 1dc456b4fa
commit 4ce0fbdf3f

View File

@ -146,8 +146,11 @@ def promptForUpdate():
except:
printFailure("ERROR: No 'hosts' file in the folder, try creating one manually")
if not update:
return
response = "yes" if auto else query_yes_no("Do you want to update all data sources?")
if response == "yes" and update:
if response == "yes":
updateAllSources()
else:
if not auto: