/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Alexander Belchenko
  • Date: 2008-01-02 18:47:54 UTC
  • mfrom: (3152 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3153.
  • Revision ID: bialix@ukr.net-20080102184754-wig6a9133t410ms7
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
2515
2515
                path_str = repr(path)
2516
2516
            path_str += ' '
2517
2517
        self.path_str = path_str
 
2518
 
 
2519
 
 
2520
class UnsupportedTimezoneFormat(BzrError):
 
2521
 
 
2522
    _fmt = ('Unsupported timezone format "%(timezone)s", '
 
2523
            'options are "utc", "original", "local".')
 
2524
 
 
2525
    def __init__(self, timezone):
 
2526
        self.timezone = timezone