Whitespace

This commit is contained in:
Stefano Rivera 2012-03-26 09:41:05 +02:00
parent 790fb3a31a
commit 872957da4e

View File

@ -110,7 +110,7 @@ class Dsc(debian.deb822.Dsc):
if (size != their_checksums[name][0] or if (size != their_checksums[name][0] or
checksum != their_checksums[name][1]): checksum != their_checksums[name][1]):
return False return False
return True # one checksum is good enough return True # one checksum is good enough
return True return True
@ -317,7 +317,8 @@ class SourcePackage(object):
if parsed.scheme == 'file': if parsed.scheme == 'file':
in_ = open(parsed.path, 'r') in_ = open(parsed.path, 'r')
else: else:
proxy = urllib2.ProxyHandler() # uses default proxy from environment # uses default proxy from environment
proxy = urllib2.ProxyHandler()
opener = urllib2.build_opener(proxy) opener = urllib2.build_opener(proxy)
try: try:
in_ = opener.open(url) in_ = opener.open(url)