/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 breezy/cmd_version_info.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-12 01:41:38 UTC
  • mto: (7143.16.20 even-more-cleanups)
  • mto: This revision was merged to the branch mainline in revision 7175.
  • Revision ID: jelmer@jelmer.uk-20181112014138-3b0zyx91cu3wdq3k
More PEP8 fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
        return version_info_formats.get_builder(format)
46
46
    except KeyError:
47
47
        formats = version_info_formats.get_builder_formats()
48
 
        raise errors.BzrCommandError(gettext('No known version info format {0}.'
49
 
                                             ' Supported types are: {1}').format(
50
 
                                     format, formats))
 
48
        raise errors.BzrCommandError(
 
49
            gettext('No known version info format {0}.'
 
50
                    ' Supported types are: {1}').format(format, formats))
51
51
 
52
52
 
53
53
class cmd_version_info(Command):