diff options
Diffstat (limited to 'cloudinit/CloudConfig/cc_set_hostname.py')
-rw-r--r-- | cloudinit/CloudConfig/cc_set_hostname.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/CloudConfig/cc_set_hostname.py b/cloudinit/CloudConfig/cc_set_hostname.py index 34621e97..2b130810 100644 --- a/cloudinit/CloudConfig/cc_set_hostname.py +++ b/cloudinit/CloudConfig/cc_set_hostname.py @@ -26,7 +26,7 @@ def handle(name,cfg,cloud,log,args): try: hostname = util.get_cfg_option_str(cfg,"hostname",cloud.get_hostname()) set_hostname(hostname, log) - except Exception, e: + except Exception as e: util.logexc(log) log.warn("failed to set hostname\n") |