applied the except and raise fixers to the master branch to close the gap with py3
[nepi.git] / src / nepi / resources / planetlab / scripts / pl-vif-create.py
index 1c19e3e..6b72278 100644 (file)
@@ -40,7 +40,7 @@ def recv_msg(conn):
     while '\n' not in chunk:
         try:
             chunk = conn.recv(1024)
-        except (OSError, socket.error), e:
+        except (OSError, socket.error) as e:
             if e[0] != errno.EINTR:
                 raise
             # Ignore eintr errors
@@ -146,9 +146,8 @@ if __name__ == '__main__':
             pointopoint = pointopoint, txqueuelen = txqueuelen) 
      
     # Saving interface name to vif_name_file
-    f = open(vif_name_file, 'w')
-    f.write(vif_name)
-    f.close()
+    with open(vif_name_file, 'w') as f:
+        f.write(vif_name)
 
     # create unix socket to receive instructions
     sock = create_socket(socket_name)
@@ -164,7 +163,7 @@ if __name__ == '__main__':
         while not stop:
             try:
                 (msg, args) = recv_msg(conn)
-            except socket.timeout, e:
+            except socket.timeout as e:
                 # Ingore time-out
                 continue