From: James Troup Date: Thu, 18 May 2006 21:13:05 +0000 (-0500) Subject: Fix trivial errors during name conversion X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=916a3da845aa3b2495cd7f7de44ea68572c37de6;p=dak.git Fix trivial errors during name conversion --- diff --git a/dak/process_unchecked.py b/dak/process_unchecked.py index 5b97b09e..796c98a3 100755 --- a/dak/process_unchecked.py +++ b/dak/process_unchecked.py @@ -89,7 +89,7 @@ def init(): if Options["Help"]: usage() - Upload = daklib.queue.Queue(Cnf) + Upload = daklib.queue.Upload(Cnf) changes = Upload.pkg.changes dsc = Upload.pkg.dsc @@ -594,7 +594,7 @@ def check_files(): # Validate the component component = files[file]["component"] - component_id = database.get_component_id(component) + component_id = daklib.database.get_component_id(component) if component_id == -1: reject("file '%s' has unknown component '%s'." % (file, component)) continue @@ -609,14 +609,14 @@ def check_files(): # Determine the location location = Cnf["Dir::Pool"] - location_id = database.get_location_id (location, component, archive) + location_id = daklib.database.get_location_id (location, component, archive) if location_id == -1: reject("[INTERNAL ERROR] couldn't determine location (Component: %s, Archive: %s)" % (component, archive)) files[file]["location id"] = location_id # Check the md5sum & size against existing files (if any) files[file]["pool name"] = daklib.utils.poolify (changes["source"], files[file]["component"]) - files_id = database.get_files_id(files[file]["pool name"] + file, files[file]["size"], files[file]["md5sum"], files[file]["location id"]) + files_id = daklib.database.get_files_id(files[file]["pool name"] + file, files[file]["size"], files[file]["md5sum"], files[file]["location id"]) if files_id == -1: reject("INTERNAL ERROR, get_files_id() returned multiple matches for %s." % (file)) elif files_id == -2: