diff options
author | Scott Moser <smoser@ubuntu.com> | 2014-02-26 14:28:46 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-02-26 14:28:46 -0500 |
commit | 21fc25fbc0e73e15710d2f0333f7d3ba13eb3739 (patch) | |
tree | e2d11aa939fc2121201386ffcbf841913da7ee1b /cloudinit/sources/DataSourceSmartOS.py | |
parent | 0fa8bfa1104b18aaed8afb720cf0fa8ad8b3ffa2 (diff) | |
download | vyos-cloud-init-21fc25fbc0e73e15710d2f0333f7d3ba13eb3739.tar.gz vyos-cloud-init-21fc25fbc0e73e15710d2f0333f7d3ba13eb3739.zip |
pep8 and pylint
Diffstat (limited to 'cloudinit/sources/DataSourceSmartOS.py')
-rw-r--r-- | cloudinit/sources/DataSourceSmartOS.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cloudinit/sources/DataSourceSmartOS.py b/cloudinit/sources/DataSourceSmartOS.py index 3c30541c..7c1eb09a 100644 --- a/cloudinit/sources/DataSourceSmartOS.py +++ b/cloudinit/sources/DataSourceSmartOS.py @@ -209,7 +209,7 @@ class DataSourceSmartOS(sources.DataSource): # executed. It may be of any format that would be considered # executable in the guest instance. # - # We write 'user-script' and 'operator-script' into the + # We write 'user-script' and 'operator-script' into the # instance/data directory. The default vendor-data then handles # executing them later. data_d = os.path.join(self.paths.get_cpath(), 'instances', @@ -244,7 +244,8 @@ class DataSourceSmartOS(sources.DataSource): md['vendor-data'] = BUILTIN_VENDOR_DATA % { 'user_script': user_script, 'operator_script': operator_script, - 'per_boot_d': os.path.join(self.paths.get_cpath("scripts"), 'per-boot'), + 'per_boot_d': os.path.join(self.paths.get_cpath("scripts"), + 'per-boot'), } self.metadata = util.mergemanydict([md, self.metadata]) |