[PATCH] Fix list-harrdrive-stub

Brian C. Lane bcl at redhat.com
Fri Feb 20 16:40:07 UTC 2015


On Fri, Feb 20, 2015 at 10:41:18AM -0500, Anne Mulhern wrote:
> 
> ----- Original Message -----
> > From: "Brian C. Lane" <bcl at redhat.com>
> > To: anaconda-patches at lists.fedorahosted.org
> > Sent: Friday, February 20, 2015 10:25:03 AM
> > Subject: [PATCH] Fix list-harrdrive-stub
> > 
> > Change to py3 print resulted in the output looking like a tuple
> > ---
> >  data/command-stubs/list-harddrives-stub | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/data/command-stubs/list-harddrives-stub
> > b/data/command-stubs/list-harddrives-stub
> > index 3c52d35..28274e4 100755
> > --- a/data/command-stubs/list-harddrives-stub
> > +++ b/data/command-stubs/list-harddrives-stub
> > @@ -35,7 +35,7 @@ def main(argv):
> >      lst = list(lst)
> >      lst.sort()
> >      for dev, size in lst:
> > -        print(dev, size)
> > +        print("%s %s" % (dev, size))
> >  
> >  if __name__ == "__main__":
> >      main(sys.argv)
> > --
> > 2.1.0
> > 
> > _______________________________________________
> > anaconda-patches mailing list
> > anaconda-patches at lists.fedorahosted.org
> > https://lists.fedorahosted.org/mailman/listinfo/anaconda-patches
> > 
> 
> I already posted a patch for this one.
> 
> Probably I'ld better push it now, since this definitely constitutes an implicit ack.

Ha! I missed that, yes, implicit ACK implied :)

-- 
Brian C. Lane | Anaconda Team | IRC: bcl #anaconda | Port Orchard, WA (PST8PDT)


More information about the anaconda-patches mailing list