~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remotebranch.py

merge from aaron - fixes bare excepts, adds ancestor namespace

Show diffs side-by-side

added added

removed removed

Lines of Context:
184
184
        p = self._path(fileid)
185
185
        try:
186
186
            return get_url(p, compressed=True)
187
 
        except:
 
187
        except urllib2.URLError:
188
188
            raise KeyError(fileid)
189
189
    
190
190