diff options
author | Dominic Schlegel <dominic.schlegel@hostpoint.ch> | 2019-10-17 15:00:48 +0000 |
---|---|---|
committer | Server Team CI Bot <josh.powers+server-team-bot@canonical.com> | 2019-10-17 15:00:48 +0000 |
commit | a86829d32284ea4842f13035442b1a5127997018 (patch) | |
tree | 8ed40ed55e3c50b6e428fb6d1b930cf795efe098 /cloudinit/net/__init__.py | |
parent | 7e699256b319cdf41e747211763e593a6b5f3393 (diff) | |
download | vyos-cloud-init-a86829d32284ea4842f13035442b1a5127997018.tar.gz vyos-cloud-init-a86829d32284ea4842f13035442b1a5127997018.zip |
fix some more typos in comments
Diffstat (limited to 'cloudinit/net/__init__.py')
-rw-r--r-- | cloudinit/net/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/net/__init__.py b/cloudinit/net/__init__.py index 307da780..bd806378 100644 --- a/cloudinit/net/__init__.py +++ b/cloudinit/net/__init__.py @@ -389,7 +389,7 @@ def find_fallback_nic(blacklist_drivers=None): potential_interfaces = possibly_connected # if eth0 exists use it above anything else, otherwise get the interface - # that we can read 'first' (using the sorted defintion of first). + # that we can read 'first' (using the sorted definition of first). names = list(sorted(potential_interfaces, key=natural_sort_key)) if DEFAULT_PRIMARY_INTERFACE in names: names.remove(DEFAULT_PRIMARY_INTERFACE) |