summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSeth Vidal <skvidal@fedoraproject.org>2007-09-25 10:41:25 -0400
committerSeth Vidal <skvidal@fedoraproject.org>2007-09-25 10:41:25 -0400
commit04d9598cef8cd5501acba95040ee46d73c52dbef (patch)
tree449454b0758e7987a6997470f33f0703f186cdfc
parentfca2c8e36dfec0ced3957ba8f6e62bf62a99c84b (diff)
downloadthird_party-func-04d9598cef8cd5501acba95040ee46d73c52dbef.tar.gz
third_party-func-04d9598cef8cd5501acba95040ee46d73c52dbef.tar.xz
third_party-func-04d9598cef8cd5501acba95040ee46d73c52dbef.zip
change imports for new paths
-rw-r--r--client/sslclient.py2
-rw-r--r--server/AuthedXMLRPCServer.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/client/sslclient.py b/client/sslclient.py
index 5575deb..9439c4a 100644
--- a/client/sslclient.py
+++ b/client/sslclient.py
@@ -5,7 +5,7 @@ import sys
import xmlrpclib
import urllib
-import SSLCommon
+from func import SSLCommon
class SSL_Transport(xmlrpclib.Transport):
diff --git a/server/AuthedXMLRPCServer.py b/server/AuthedXMLRPCServer.py
index f76f325..490b57a 100644
--- a/server/AuthedXMLRPCServer.py
+++ b/server/AuthedXMLRPCServer.py
@@ -21,7 +21,7 @@ import time
import SocketServer
import xmlrpclib
import SimpleXMLRPCServer
-import SSLCommon
+from func import SSLCommon
import OpenSSL