[ovs-dev] [python 29/31] ovs.stream: Use %d in place of %ld since the two are equivalent in Python.

Ben Pfaff blp at nicira.com
Tue Aug 23 21:05:23 UTC 2011


Reported-by: Reid Price <reid at nicira.com>
---
 python/ovs/stream.py |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/python/ovs/stream.py b/python/ovs/stream.py
index 16e383a..20cd7fe 100644
--- a/python/ovs/stream.py
+++ b/python/ovs/stream.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2010 Nicira Networks
+# Copyright (c) 2010, 2011 Nicira Networks
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -75,8 +75,8 @@ class Stream(object):
             return errno.EAFNOSUPPORT, None
 
         Stream.n_unix_sockets += 1
-        bind_path = "/tmp/stream-unix.%ld.%d" % (os.getpid(),
-                                                 Stream.n_unix_sockets)
+        bind_path = "/tmp/stream-unix.%d.%d" % (os.getpid(),
+                                                Stream.n_unix_sockets)
         connect_path = name[5:]
         error, sock = ovs.socket_util.make_unix_socket(socket.SOCK_STREAM,
                                                        True, bind_path,
-- 
1.7.4.4




More information about the dev mailing list