diff options
author | Thomas Haller <thaller@redhat.com> | 2015-03-10 12:17:23 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2015-03-10 12:17:23 +0100 |
commit | 217108437808b35aea5bd9051a5c2c5112da2ac4 (patch) | |
tree | 7fb80864a66b8e87871aa781423304a7fee9a75e /examples | |
parent | d5fc88e573fa58b93034b04d35a2454f5d28cad9 (diff) | |
download | NetworkManager-217108437808b35aea5bd9051a5c2c5112da2ac4.tar.gz |
examples/trvial: replace tabs by whitespace in python example
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/python/dbus/vpn.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/python/dbus/vpn.py b/examples/python/dbus/vpn.py index 59773a61fb..8713f19bb6 100755 --- a/examples/python/dbus/vpn.py +++ b/examples/python/dbus/vpn.py @@ -102,11 +102,11 @@ def get_wifi_device_path(): def activate_connection(connection_path, device_path): def reply_handler(opath): - print "Success: device activating" + print "Success: device activating" sys.exit(0) def error_handler(*args): - print "Error activating device: %s" % args + print "Error activating device: %s" % args sys.exit(1) bus = dbus.SystemBus() |