Author: dsommers Date: 2010-05-20 09:45:54 +0000 (Thu, 20 May 2010) New Revision: 511
Modified: trunk/v7/hal.py Log: Fixed an error in v7.hal::dumpall(), using dump() instead of dumpDevice() Signed-off-by: David Sommerseth davids@redhat.com
Modified: trunk/v7/hal.py =================================================================== --- trunk/v7/hal.py 2010-05-20 09:45:46 UTC (rev 510) +++ trunk/v7/hal.py 2010-05-20 09:45:54 UTC (rev 511) @@ -65,7 +65,7 @@ return rv def dumpall(self): "Dump device properties for all devices (like lshal)" - return "\n".join([self.dump(udi) for udi in self.__GetAllDevices()]) + return "\n".join([self.dumpDevice(udi) for udi in self.__GetAllDevices()]) def dump(self): return self.dumpall()
def getUSBBusAndPort(self, device):
v7-commits@lists.stg.fedorahosted.org