summaryrefslogtreecommitdiffhomepage
path: root/bin
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2012-08-22 06:27:12 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2012-08-22 06:27:12 +0900
commitc8cd4226d75a6eccdca500cfde46c2f9ac88f657 (patch)
tree61f969c0492fe855a816f6541823694b0c133130 /bin
parent1dcf8f76d931aa210406cc643af61ff4d1545d06 (diff)
fix pep8 1.3.3 warnings
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ryu-client2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ryu-client b/bin/ryu-client
index 9d5c7e4b..dc1f6970 100755
--- a/bin/ryu-client
+++ b/bin/ryu-client
@@ -43,7 +43,7 @@ def client_test():
'create_port': lambda a: client.create_port(a[1], a[2], a[3]),
'update_port': lambda a: client.update_port(a[1], a[2], a[3]),
'delete_port': lambda a: client.delete_port(a[1], a[2], a[3])
- }
+ }
# allow '-', instead of '_'
commands.update(dict([(k.replace('_', '-'), v)