X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Futils.py;h=9e26e9e7f07c707a79b5ca08ef5f3f1661007f59;hb=50f96efaa4536efc0636f182272ed5f57de0ebf2;hp=0d83b3418f54d61bd65704b2761b02fc85350a88;hpb=6c28a1fecc669c80960a7168a8f673d09302a541;p=dak.git diff --git a/daklib/utils.py b/daklib/utils.py index 0d83b341..9e26e9e7 100755 --- a/daklib/utils.py +++ b/daklib/utils.py @@ -1118,7 +1118,7 @@ on error.""" return "%s: tainted filename" % (filename) # Invoke gpgv on the file - status_read, status_write = os.pipe(); + status_read, status_write = os.pipe() cmd = "gpgv --status-fd %s --keyring /dev/null %s" % (status_write, filename) (_, status, _) = gpgv_get_status_output(cmd, status_read, status_write) @@ -1190,7 +1190,7 @@ used.""" return None # Build the command line - status_read, status_write = os.pipe(); + status_read, status_write = os.pipe() cmd = "gpgv --status-fd %s %s %s %s" % ( status_write, gpg_keyring_args(keyrings), sig_filename, data_filename)