diff options
Diffstat (limited to 'examples/python/gi')
| -rwxr-xr-x | examples/python/gi/ovs-external-ids.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/python/gi/ovs-external-ids.py b/examples/python/gi/ovs-external-ids.py index 63f9695e..3bc9de8f 100755 --- a/examples/python/gi/ovs-external-ids.py +++ b/examples/python/gi/ovs-external-ids.py @@ -68,7 +68,7 @@ def can_sudo(): ).returncode == 0 ) - except: + except Exception: return False @@ -222,7 +222,6 @@ def die_usage(msg): def parse_args(argv): - had_dash_dash = False args = { "mode": MODE_GET, "select_arg": None, @@ -615,7 +614,9 @@ def do_apply(nmc, device, ids_arg, do_test): die("FAILURE to get applied connection after reapply") _print() - connection_print(connection, MODE_APPLY, [], device.get_path(), prefix="AFTER: ") + connection_print( + connection_after, MODE_APPLY, [], device.get_path(), prefix="AFTER: " + ) _print() ovs_print_external_ids("AFTER-OVS-VSCTL: ") |