diff options
author | Christian Clauss <cclauss@me.com> | 2021-10-20 06:54:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-19 23:54:24 -0500 |
commit | 3a6bee59eb5e7f363c25a667ef36b9695f0ebe8d (patch) | |
tree | bbc02af349206cddc773df4449445f2372428212 /setup.py | |
parent | 150fd30ef81cea5c2b0aff5127e33a5db786aa09 (diff) | |
download | vyos-cloud-init-3a6bee59eb5e7f363c25a667ef36b9695f0ebe8d.tar.gz vyos-cloud-init-3a6bee59eb5e7f363c25a667ef36b9695f0ebe8d.zip |
Fix typos in setup.py (#1059)
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -171,10 +171,10 @@ elif os.path.isfile('/etc/system-release-cpe'): cpe_data = f.read().rstrip().split(':') if cpe_data[1] == "\o": # noqa: W605 - # URI formated CPE + # URI formatted CPE inc = 0 else: - # String formated CPE + # String formatted CPE inc = 1 (cpe_vendor, cpe_product, cpe_version) = cpe_data[2+inc:5+inc] if cpe_vendor == "amazon": @@ -238,7 +238,7 @@ class InitsysInstallData(install): continue self.distribution.data_files.append( (INITSYS_ROOTS[k], INITSYS_FILES[k])) - # Force that command to reinitalize (with new file list) + # Force that command to reinitialize (with new file list) self.distribution.reinitialize_command('install_data', True) |