ia64/xen-unstable
changeset 8346:7256d2425fa7
Fix reference to HttpXendClientProtocol. This was previously referring to the
abstract base class, which was never going to work. (This is debugging code
only, so I presume that no-one has used it for a long time, but it's doing no
harm hanging around.)
Signed-off-by: Ewan Mellor <ewan@xensource.com>
abstract base class, which was never going to work. (This is debugging code
only, so I presume that no-one has used it for a long time, but it's doing no
harm hanging around.)
Signed-off-by: Ewan Mellor <ewan@xensource.com>
author | emellor@leeni.uk.xensource.com |
---|---|
date | Tue Dec 13 17:31:35 2005 +0000 (2005-12-13) |
parents | ef2fff896422 |
children | 95f84e37c90d |
files | tools/python/xen/xend/XendClient.py |
line diff
1.1 --- a/tools/python/xen/xend/XendClient.py Tue Dec 13 10:57:18 2005 +0000 1.2 +++ b/tools/python/xen/xend/XendClient.py Tue Dec 13 17:31:35 2005 +0000 1.3 @@ -354,7 +354,7 @@ class Xend: 1.4 def getHttpServer(srv=None): 1.5 """Create and return a xend client. 1.6 """ 1.7 - return Xend(srv=srv, client=XendClientProtocol()) 1.8 + return Xend(srv=srv, client=HttpXendClientProtocol()) 1.9 1.10 def getUnixServer(srv=None): 1.11 """Create and return a unix-domain xend client.