X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fgenerate_releases.py;h=a849f36db0477323d4f7f524aecd252b6dbd0215;hb=52eb03dccab0a9898bca4d36a0a96ebe377fb977;hp=21eaac9ebed0ad9d21f71ee03a5fa9c5b1c0ece7;hpb=ef5d64e23cd74af46ec19789c81a9bed804009c3;p=dak.git diff --git a/dak/generate_releases.py b/dak/generate_releases.py index 21eaac9e..a849f36d 100755 --- a/dak/generate_releases.py +++ b/dak/generate_releases.py @@ -156,8 +156,10 @@ class ReleaseWriter(object): if getattr(suite, dbfield) is not None: # TEMPORARY HACK HACK HACK until we change the way we store the suite names etc if key == 'Suite' and getattr(suite, dbfield) == 'squeeze-updates': - out.write("Suite: stable-updates\n") + out.write("Suite: oldstable-updates\n") elif key == 'Suite' and getattr(suite, dbfield) == 'wheezy-updates': + out.write("Suite: stable-updates\n") + elif key == 'Suite' and getattr(suite, dbfield) == 'jessie-updates': out.write("Suite: testing-updates\n") else: out.write("%s: %s\n" % (key, getattr(suite, dbfield)))