fixes
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Wed, 28 May 2008 15:49:13 +0000 (15:49 +0000)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Wed, 28 May 2008 15:49:13 +0000 (15:49 +0000)
safexmlrpc.py
setup.py
sm.py

index f320c9c..c74af8e 100644 (file)
@@ -2,8 +2,11 @@
 
 """Leverage curl to make XMLRPC requests that check the server's credentials."""
 
+import xmlrpclib
+
 import curlwrapper
 
+
 class CertificateCheckingSafeTransport (xmlrpclib.Transport):
 
     def __init__(self, cacert, timeout):
index 569cc99..63c6c80 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: setup.py,v 1.4 2006/11/28 21:36:06 mlhuang Exp $
+# $Id$
 #
 
 from distutils.core import setup, Extension
diff --git a/sm.py b/sm.py
index a050ded..8fab86e 100644 (file)
--- a/sm.py
+++ b/sm.py
@@ -7,7 +7,7 @@ also to make inter-sliver resource loans.  The sliver manager is also
 responsible for handling delegation accounts.
 """
 
-# $Id: sm.py,v 1.28 2007/07/27 18:02:36 dhozac Exp $
+# $Id$
 
 try: from bwlimit import bwmin, bwmax
 except ImportError: bwmin, bwmax = 8, 1000*1000*1000