diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-12-31 12:34:51 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-12-31 12:34:51 +0100 |
commit | baca347ce831747f87f5ae8729ead8c1257d4ab2 (patch) | |
tree | 7dd6239ea5a747a331f441e4888febf41eebfb63 /python | |
parent | 68e9026dc33f53ef105aa2f20b777d126a0e3072 (diff) | |
download | vyos-1x-baca347ce831747f87f5ae8729ead8c1257d4ab2.tar.gz vyos-1x-baca347ce831747f87f5ae8729ead8c1257d4ab2.zip |
geneve: use proper variable name
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/ifconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/ifconfig.py b/python/vyos/ifconfig.py index 72f11c04d..b28e7af3d 100644 --- a/python/vyos/ifconfig.py +++ b/python/vyos/ifconfig.py @@ -1666,7 +1666,7 @@ class VXLANIf(Interface, ): } return config -class GeneveIf(Interface, ): +class GeneveIf(Interface): """ Geneve: Generic Network Virtualization Encapsulation |