WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] Fix for "unsubscriptable object" error, courtesy of Kurt

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Fix for "unsubscriptable object" error, courtesy of Kurt Garloff
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Mon, 10 Oct 2005 23:16:11 +0000
Delivery-date: Mon, 10 Oct 2005 23:13:46 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User emellor@ewan
# Node ID e97436e48e56926eea0333fa122ee22692673c85
# Parent  5da7f98f91e73728ef4eec39e1c7b3b69d558e9b
Fix for "unsubscriptable object" error, courtesy of Kurt Garloff
<garloff@xxxxxxx> -- missing comma in op_mem_target_set.

Signed-off-by: Ewan Mellor <ewan@xxxxxxxxxxxxx>

diff -r 5da7f98f91e7 -r e97436e48e56 tools/python/xen/xend/server/SrvDomain.py
--- a/tools/python/xen/xend/server/SrvDomain.py Mon Oct 10 20:45:31 2005
+++ b/tools/python/xen/xend/server/SrvDomain.py Mon Oct 10 23:03:00 2005
@@ -129,7 +129,7 @@
 
 
     def op_mem_target_set(self, op, req):
-        return self.call(self.dom.setMemoryTarget
+        return self.call(self.dom.setMemoryTarget,
                          [['target', 'int']],
                          req)
 

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Fix for "unsubscriptable object" error, courtesy of Kurt Garloff, Xen patchbot -unstable <=