summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorbenediktb <benedikt@blablub.de>2013-08-10 23:55:44 +0200
committerbenediktb <benedikt@blablub.de>2013-08-10 23:55:44 +0200
commit425779021fbc2e29e62df102b81cbec388fd9e0d (patch)
treeab07b633b42b8df223d2d0e5e5c78b928117b04b /bin
parent3fa2c37bd48ef22937c5644995ac443f557c0871 (diff)
Updater: "Runonce" functionality was missing an argument
Updater will now get called correctly with the new runonce argument. I forgot to include the line in my previous commit.
Diffstat (limited to 'bin')
-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()