summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cloudinit/CloudConfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/CloudConfig.py b/cloudinit/CloudConfig.py
index 6c54ae8e..6fc9090a 100644
--- a/cloudinit/CloudConfig.py
+++ b/cloudinit/CloudConfig.py
@@ -490,7 +490,7 @@ def handle_updates_check(cfg):
try:
cron=open("%s-%s" % (cronpre, "updates") ,"w")
cron.write("%s root %s\n" % \
- (time.strftime("%M %H * * * *"),' '.join(cmd)))
+ (time.strftime("%M %H * * *"),' '.join(cmd)))
cron.close()
except:
warn("failed to enable cron update system check")