From 31dfbc42ec29fc91d23a4ea360792ac80f8ae417 Mon Sep 17 00:00:00 2001 From: Mark Hymers Date: Sun, 2 Aug 2009 15:31:01 +0100 Subject: [PATCH] queue.py typo fixes Signed-off-by: Mark Hymers --- daklib/queue.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/daklib/queue.py b/daklib/queue.py index f6362206..ff7247ce 100755 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -443,7 +443,7 @@ class Upload(object): # of the queue directories. base_filename = os.path.basename(filename) for d in [ "Accepted", "Byhand", "Done", "New", "ProposedUpdates", "OldProposedUpdates" ]: - if os.path.exists(os.path.join(Cnf["Dir::Queue::%s" % (d) ], base_filename): + if os.path.exists(os.path.join(Cnf["Dir::Queue::%s" % (d) ], base_filename)): self.rejects.append("%s: a file with this name already exists in the %s directory." % (base_filename, d)) # Check the .changes is non-empty @@ -872,7 +872,7 @@ class Upload(object): self.binary_file_checks(f, session) # Checks for a source package... - elif re_issource.match(f) + elif re_issource.match(f): has_source = True # This routine appends to self.rejects/warnings as appropriate @@ -1161,7 +1161,7 @@ class Upload(object): self.rejects.append(j) if "source" in self.pkg.changes["architecture"]: # TODO: Move _ensure_dsc_hash into this class - for j in utils._ensure_dsc_hash(self.pkg.dsc, self.pkg.dsc_files, hashname, hashfunc)) + for j in utils._ensure_dsc_hash(self.pkg.dsc, self.pkg.dsc_files, hashname, hashfunc): self.rejects.append(j) def check_hashes(): -- 2.39.2