summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-08-10 15:11:20 -0700
committerBernhard Posselt <nukeawhale@gmail.com>2013-08-10 15:11:20 -0700
commit76a82f56edac59a0308f7dceb49d3eb104742173 (patch)
tree35d902b42ceed28478d36a767605f082aa797c29
parentbf7753b5189808c178b255974887ad3a70897f78 (diff)
parent425779021fbc2e29e62df102b81cbec388fd9e0d (diff)
Merge pull request #311 from benediktb/update-runonce
Updater: "Runonce" functionality was missing an argument
-rw-r--r--bin/updater.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/updater.py b/bin/updater.py
index dab7f6f45..5fbbf376d 100644
--- a/bin/updater.py
+++ b/bin/updater.py
@@ -154,7 +154,7 @@ def main():
# create the updater and run the threads
updater = Updater(args.url, args.threads, args.interval, args.user,
- args.password, args.timeout)
+ args.password, args.timeout, args.runonce)
updater.run()