~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remotebranch.py

fixme note for bzr status

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/env python
 
2
 
1
3
# Copyright (C) 2005 Canonical Ltd
2
4
 
3
5
# This program is free software; you can redistribute it and/or modify
182
184
        p = self._path(fileid)
183
185
        try:
184
186
            return get_url(p, compressed=True)
185
 
        except urllib2.URLError:
 
187
        except:
186
188
            raise KeyError(fileid)
187
189
    
188
190