Also fall back to rmadison when ubuntu_version >= debian_version

This happens, for example, when there are Ubuntu local changes and the Debian importer hasn't caught up yet.
This commit is contained in:
Iain Lane 2010-05-09 16:11:00 +01:00
parent 22274ef8aa
commit 51dc6ffb7e

View File

@ -143,7 +143,7 @@ if __name__ == '__main__':
sys.exit(1)
# Stop if Ubuntu has already the version from Debian or a newer version
if (ubuntu_version == debian_version) and hasLP:
if (ubuntu_version >= debian_version) and hasLP:
# try rmadison
import ubuntutools.requestsync.mail
try: