From cfdfdbbabe4b9061a30d349e6b0325e55969b523 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Fri, 24 Aug 2007 21:08:13 -0400 Subject: [PATCH] Fix a typo. Only supply logger once. --- pypungi/pungi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pypungi/pungi.py b/pypungi/pungi.py index 2b12cbf0..ac0ab260 100755 --- a/pypungi/pungi.py +++ b/pypungi/pungi.py @@ -508,7 +508,7 @@ class Pungi(pypungi.PungiBase): # shove the sha1sum into a file sha1file = open(os.path.join(self.isodir, 'SHA1SUM'), 'a') - pypungi._doRunCommand(['/usr/bin/sha1sum', isoname], self.logger, self.logger, rundir=self.isodir, output=sha1file) + pypungi._doRunCommand(['/usr/bin/sha1sum', isoname], self.logger, rundir=self.isodir, output=sha1file) sha1file.close() # Do some clean up