diff options
-rw-r--r-- | cloudinit/CloudConfig.py | 2 |
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") |