Native syncs won't have changes files

This commit is contained in:
Stefano Rivera 2011-09-10 16:06:56 +02:00
parent 1c814c8ec6
commit 46f3f929bc

View File

@ -108,7 +108,8 @@ def get_ubuntu_delta_changelog(srcpkg):
for record in spph:
changes_url = record.changesFileUrl()
if changes_url is None:
continue
# Native sync
break
changes = Changes(urllib2.urlopen(changes_url))
for line in changes['Changes'].splitlines():
line = line[1:]