Added fix for bug #143348.
authorChris Gianelloni <wolf31o2@gentoo.org>
Fri, 8 Sep 2006 20:00:57 +0000 (20:00 +0000)
committerChris Gianelloni <wolf31o2@gentoo.org>
Fri, 8 Sep 2006 20:00:57 +0000 (20:00 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@1175 d1e1f19c-881f-0410-ab34-b69fee027534

ChangeLog
modules/catalyst_support.py

index 298b37c2641b5b395eda908b3630b52408f3f2fa..9c03d9bb7c5957091ba9357e4dce1130de3bd142 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.659 2006/08/23 11:20:23 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.660 2006/09/08 20:00:57 wolf31o2 Exp $
+
+  08 Sep 2006; Chris Gianelloni <wolf31o2@gentoo.org>
+  modules/catalyst_support.py:
+  Added fix for bug #143348.
 
   23 Aug 2006; Chris Gianelloni <wolf31o2@gentoo.org>
   targets/support/livecdfs-update.sh:
index 90fe8d3765583215e29cd64f92f926040e196320..f6ce0e0e8defedcf7c74eae77d66a3d75768b650 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2005 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/modules/catalyst_support.py,v 1.74 2006/05/19 16:25:20 rocket Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/modules/catalyst_support.py,v 1.75 2006/09/08 20:00:57 wolf31o2 Exp $
 
 import sys,string,os,types,re,signal,traceback,time
 #import md5,sha
@@ -89,7 +89,7 @@ def calc_hash2(file,cmd,cmd_args,id_string="MD5",verbose=False):
        hash=mylines[0]
        short_file=os.path.split(mylines[1])[1]
        a.close()
-       result=header+hash+" "+short_file+"\n"
+       result=header+hash+"  "+short_file+"\n"
        if verbose:
                print header+" (%s) = %s" % (short_file, result)
        return result