~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remotebranch.py

for remote gets fallback from foo.gz to foo in RemoteStore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
193
193
        try:
194
194
            return get_url(p, compressed=True)
195
195
        except urllib2.URLError:
 
196
            pass
 
197
        try:
 
198
            return get_url(p, compressed=False)
 
199
        except urllib2.URLError:
196
200
            raise KeyError(fileid)
197
201
    
198
202