debuggers.hg
changeset 14644:b7c1b412c472
Fix missing import.
Signed-off-by: Ewan Mellor <ewan@xensource.com>
Signed-off-by: Ewan Mellor <ewan@xensource.com>
author | Ewan Mellor <ewan@xensource.com> |
---|---|
date | Wed Mar 28 10:05:03 2007 +0100 (2007-03-28) |
parents | 8a3b9908fd75 |
children | ff6a1607c17b |
files | tools/python/xen/util/xmlrpcclient.py tools/python/xen/util/xmlrpclib2.py |
line diff
1.1 --- a/tools/python/xen/util/xmlrpcclient.py Wed Mar 28 10:04:32 2007 +0100 1.2 +++ b/tools/python/xen/util/xmlrpcclient.py Wed Mar 28 10:05:03 2007 +0100 1.3 @@ -19,6 +19,7 @@ 1.4 1.5 from httplib import FakeSocket, HTTPConnection, HTTP 1.6 import socket 1.7 +import string 1.8 import xmlrpclib 1.9 from types import StringTypes 1.10
2.1 --- a/tools/python/xen/util/xmlrpclib2.py Wed Mar 28 10:04:32 2007 +0100 2.2 +++ b/tools/python/xen/util/xmlrpclib2.py Wed Mar 28 10:05:03 2007 +0100 2.3 @@ -21,7 +21,6 @@ An enhanced XML-RPC client/server interf 2.4 """ 2.5 2.6 import re 2.7 -import string 2.8 import fcntl 2.9 from types import * 2.10