From: Mark Hymers Date: Sat, 16 Aug 2014 21:24:18 +0000 (+0000) Subject: Remove code working around an old issue X-Git-Url: https://git.donarmstrong.com/?p=dak.git;a=commitdiff_plain;h=0a9d6b9eeb1e215f0e1162cb943fa3c218264c21 Remove code working around an old issue Signed-off-by: Mark Hymers --- diff --git a/dak/export_suite.py b/dak/export_suite.py index 980ec5a5..02608ee4 100644 --- a/dak/export_suite.py +++ b/dak/export_suite.py @@ -87,14 +87,6 @@ def main(argv=None): .join(ArchiveFile.component).join(ArchiveFile.file) \ .filter(ArchiveFile.archive == suite.archive) \ .filter(ArchiveFile.file == f).first() - # XXX: Remove later. There was a bug that caused only the *.dsc to - # be installed in build queues and we do not want to break them. - # The bug was fixed in 55d2c7e6e2418518704623246021021e05b90e58 - # on 2012-11-04 - if af is None: - af = session.query(ArchiveFile) \ - .join(ArchiveFile.component).join(ArchiveFile.file) \ - .filter(ArchiveFile.file == f).first() src = af.path if relative: src = os.path.relpath(src, directory)