~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remotebranch.py

Accept and tweak David Clymers BZREDITOR support patch

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:
200
196
            raise KeyError(fileid)
201
197
    
202
198