* requestsync: Fix a bug that prevented sync requests for new packages with

a version smaller than 0.
This commit is contained in:
Michael Bienia 2009-12-31 13:16:32 +01:00
parent fe3937b755
commit 65762755c0
2 changed files with 8 additions and 3 deletions

9
debian/changelog vendored
View File

@ -1,11 +1,16 @@
ubuntu-dev-tools (0.86ubuntu1) UNRELEASED; urgency=low
ubuntu-dev-tools (0.87) UNRELEASED; urgency=low
[ Steve Langasek ]
* Revert the submittodebian change to inline patches. This is a style
choice, the patch length has nothing to do with it; if there's demand for
patch inlining, this should be made a (non-default) option to
submittodebian.
-- Steve Langasek <steve.langasek@ubuntu.com> Sun, 27 Dec 2009 16:24:49 -0800
[ Michael Bienia ]
* requestsync: Fix a bug that prevented sync requests for new packages with
a version smaller than 0.
-- Michael Bienia <geser@ubuntu.com> Thu, 31 Dec 2009 13:15:01 +0100
ubuntu-dev-tools (0.86) lucid; urgency=low

View File

@ -120,7 +120,7 @@ if __name__ == '__main__':
newsource = False # override the -n flag
except udtexceptions.PackageNotFoundException:
ubuntu_srcpkg = None
ubuntu_version = Version(0)
ubuntu_version = Version('0~0')
ubuntu_component = 'universe' # let's assume universe
if not newsource:
print "'%s' doesn't exist in 'Ubuntu %s'.\nDo you want to sync a new package?" % \