diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2012-08-22 06:27:12 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2012-08-22 06:27:12 +0900 |
commit | c8cd4226d75a6eccdca500cfde46c2f9ac88f657 (patch) | |
tree | 61f969c0492fe855a816f6541823694b0c133130 /bin | |
parent | 1dcf8f76d931aa210406cc643af61ff4d1545d06 (diff) |
fix pep8 1.3.3 warnings
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ryu-client | 2 |
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) |