summaryrefslogtreecommitdiff
path: root/test/remove-provider
diff options
context:
space:
mode:
authorJaehyun Kim <jeik01.kim@samsung.com>2021-01-25 06:15:21 +0000
committerGerrit Code Review <gerrit@review>2021-01-25 06:15:21 +0000
commit6d2cf90574c81cd30340116270e17af058703afb (patch)
treed9aed754a3add94019a93239281de03bba42af85 /test/remove-provider
parent5bf80017321e03103f588306d2888d22f3f67ffa (diff)
parentc647a4b6f1132684c9d8b8ad71ec38d81147b278 (diff)
downloadconnman-6d2cf90574c81cd30340116270e17af058703afb.tar.gz
connman-6d2cf90574c81cd30340116270e17af058703afb.tar.bz2
connman-6d2cf90574c81cd30340116270e17af058703afb.zip
Merge "Imported Upstream connman version 1.38" into tizen
Diffstat (limited to 'test/remove-provider')
-rwxr-xr-xtest/remove-provider4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/remove-provider b/test/remove-provider
index 39f8de77..a2f3e6f4 100755
--- a/test/remove-provider
+++ b/test/remove-provider
@@ -4,7 +4,7 @@ import sys
import dbus
if (len(sys.argv) < 2):
- print "Usage: %s <VPN service path> " % (sys.argv[0])
+ print("Usage: %s <VPN service path> " % (sys.argv[0]))
sys.exit(1)
bus = dbus.SystemBus()
@@ -14,6 +14,6 @@ manager = dbus.Interface(bus.get_object("net.connman", "/"),
path = "" + sys.argv[1]
-print "remove path is %s" %(path)
+print("remove path is %s" %(path))
manager.RemoveProvider(sys.argv[1])