diff options
author | Satoshi Kobayashi <satoshi-k@stratosphere.co.jp> | 2015-04-10 15:43:40 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-04-14 05:19:56 +0900 |
commit | e2dfdbf5800742ce7b3af6cf6bffb7a95b73198c (patch) | |
tree | 852c6194313c8ce704e91b3bc4ef4168e7170a6e | |
parent | 813379fea933d2794d47b0cddf3bdcca35ff2c1c (diff) |
Treatment was not enough
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/contrib/ovs/socket_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ryu/contrib/ovs/socket_util.py b/ryu/contrib/ovs/socket_util.py index 843a5a99..89ca16a3 100644 --- a/ryu/contrib/ovs/socket_util.py +++ b/ryu/contrib/ovs/socket_util.py @@ -58,7 +58,7 @@ def make_unix_socket(style, nonblock, bind_path, connect_path): if sys.hexversion >= 0x02060000: os.fchmod(sock.fileno(), 0o700) else: - os.chmod("/dev/fd/%d" % sock.fileno(), 0700) + os.chmod("/dev/fd/%d" % sock.fileno(), 0o700) except OSError as e: pass if connect_path is not None: |