From: Mark Hymers Date: Wed, 28 Oct 2009 09:21:11 +0000 (+0000) Subject: cmd -> command X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;ds=inline;h=c9803f466c55ae8a2bcae42079b6b2eefd496dad;p=dak.git cmd -> command Signed-off-by: Mark Hymers --- diff --git a/daklib/queue.py b/daklib/queue.py index 17dbb67c..41c57335 100755 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -1237,7 +1237,7 @@ class Upload(object): # So now we should look at running lintian at the .changes file, capturing output # to then parse it. command = "lintian --show-overrides --tags-from-file %s %s" % (temp_filename, self.pkg.changes_file) - (result, output) = commands.getstatusoutput(cmd) + (result, output) = commands.getstatusoutput(command) # We are done with lintian, remove our tempfile os.unlink(temp_filename) if (result != 0):