Merge pull request #112 from matkoniecz/refuse_update

make -n working not only in combination with -a
This commit is contained in:
Steven Black 2016-03-20 12:16:38 -04:00
commit 4e0e298217

View File

@ -143,8 +143,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: