]> git.decadent.org.uk Git - dak.git/commitdiff
fix cameron to work again
authorRyan Murray <rmurray@debian.org>
Wed, 15 May 2002 07:54:28 +0000 (07:54 +0000)
committerRyan Murray <rmurray@debian.org>
Wed, 15 May 2002 07:54:28 +0000 (07:54 +0000)
cameron

diff --git a/cameron b/cameron
index de943f7e8c11ac7ecf2bdc51abc07e7011cb9931..28c6f4d7cb352a8a753b4062c05b4140338f7f65 100755 (executable)
--- a/cameron
+++ b/cameron
@@ -2,7 +2,7 @@
 
 # Generate file list for unstable_accepted
 # Copyright (C) 2002  Ryan Murray <rmurray@debian.org>
-# $Id: cameron,v 1.2 2002-05-10 00:24:07 troup Exp $
+# $Id: cameron,v 1.3 2002-05-15 07:54:28 rmurray Exp $
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -36,7 +36,7 @@ def main():
     list = utils.open_file("%s/unstable_accepted.list" % (Cnf["Dir::Lists"]), "w");
     q = projectB.query("SELECT filename FROM unstable_accepted WHERE in_accepted AND filename ~ '(u?deb|dsc)$'");
     for entry in q.getresult():
-        filename = os.path.join(os.path.dirname(entry[0]),'/incoming/',os.path.basename(entry[0]));
+        filename = os.path.join(os.path.dirname(entry[0]),'incoming',os.path.basename(entry[0]));
        list.write("%s\n" % (filename));
     list.close();