[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-4.0-testing] tools/pygrub: Fix a typo handling device specs with no partition part
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1279285236 -3600 # Node ID 2267168826f1c8255e75166661ebc57107093764 # Parent 13eead70c5c9b55764a6ff390c8c943a0f91d92e tools/pygrub: Fix a typo handling device specs with no partition part pygrub: fix a typo that causes exceptions when looking at device specifications that don't have a partition part (e.g. (hd0)). Signed-off-by: Tim Deegan <Tim.Deegan@xxxxxxxxxx> xen-unstable changeset: 21733:f35512e244ff xen-unstable date: Fri Jul 02 17:56:05 2010 +0100 --- tools/pygrub/src/GrubConf.py | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -r 13eead70c5c9 -r 2267168826f1 tools/pygrub/src/GrubConf.py --- a/tools/pygrub/src/GrubConf.py Thu Jul 15 09:49:45 2010 +0100 +++ b/tools/pygrub/src/GrubConf.py Fri Jul 16 14:00:36 2010 +0100 @@ -61,7 +61,7 @@ class GrubDiskPart(object): if self.part is not None: return "d%dp%d" %(self.disk, self.part) else: - return "d%d" %(self,disk,) + return "d%d" %(self.disk,) def get_disk(self): return self._disk _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |