aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authoremellor@ewan <emellor@ewan>2005-09-27 22:08:07 +0100
committeremellor@ewan <emellor@ewan>2005-09-27 22:08:07 +0100
commit92e31dac79b8ac43d633892b415591287fad4f8a (patch)
tree4015d62abdcebb49d7a36376cbe9c98325b0a17c /tools
parent6269dad64944c6acfb5ffe76ce986a3f6312d9eb (diff)
downloadxen-92e31dac79b8ac43d633892b415591287fad4f8a.tar.gz
xen-92e31dac79b8ac43d633892b415591287fad4f8a.tar.bz2
xen-92e31dac79b8ac43d633892b415591287fad4f8a.zip
Fix final misuse of prettyprint parameters.
Diffstat (limited to 'tools')
-rw-r--r--tools/python/xen/xend/PrettyPrint.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/python/xen/xend/PrettyPrint.py b/tools/python/xen/xend/PrettyPrint.py
index 198ee4a612..2819f02dcf 100644
--- a/tools/python/xen/xend/PrettyPrint.py
+++ b/tools/python/xen/xend/PrettyPrint.py
@@ -39,9 +39,9 @@ class PrettyItem:
print '***PrettyItem>output>', self
pass
- def prettyprint(self, _, width):
+ def prettyprint(self, _):
print '***PrettyItem>prettyprint>', self
- return width
+ return self.width
class PrettyString(PrettyItem):