From c550c16f62e839fed2aec01a77ad906e47803614 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 30 Sep 2008 15:46:59 -0700 Subject: [PATCH] Make sure we don't include the 'sha1:' in the iso SHA1SUM file. --- src/pypungi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pypungi/__init__.py b/src/pypungi/__init__.py index 9b358fd2..e8530b9c 100644 --- a/src/pypungi/__init__.py +++ b/src/pypungi/__init__.py @@ -911,7 +911,7 @@ cost=500 self.logger.info("Generating sha1sum of %s" % path) sha1sum = pypungi.util._doCheckSum(path, 'sha1', self.logger) if sha1sum: - sha1file.write("%s *%s\n" % (sha1sum, os.path.basename(path))) + sha1file.write("%s *%s\n" % (sha1sum.replace('sha1:', ''), os.path.basename(path))) else: self.logger.error('Failed to generate sha1sum for %s' % sha1file) sys.exit(1)