liveusb/creator.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
New commits: commit ef51fa9f86aa8ae28131504293c65bf274f3430b Author: Luke Macken lmacken@redhat.com Date: Fri Jun 12 03:23:38 2009 -0400
Be more vocal about our ISO MD5 checksum results
diff --git a/liveusb/creator.py b/liveusb/creator.py index 23c4739..7ae03fb 100755 --- a/liveusb/creator.py +++ b/liveusb/creator.py @@ -599,8 +599,10 @@ class LinuxLiveUSBCreator(LiveUSBCreator): self.log.info(_('Verifying ISO MD5 checksum')) try: self.popen('checkisomd5 "%s"' % self.iso) - except LiveUSBError: + except LiveUSBError, e: + self.log.info(_('ISO MD5 checksum verification failed')) return False + self.log.info(_('ISO MD5 checksum passed')) return True
def get_proxies(self):
liveusb-creator@lists.stg.fedorahosted.org