/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/export_pot.py

  • Committer: Breezy landing bot
  • Author(s): Martin
  • Date: 2017-06-05 21:50:19 UTC
  • mfrom: (6656.1.3 dict_viewing)
  • Revision ID: breezy.the.bot@gmail.com-20170605215019-uw7s07tx11p194kh
Apply 2to3 dict fixer and clean up with sixish view methods

Merged from https://code.launchpad.net/~gz/brz/dict_viewing/+merge/325108

Show diffs side-by-side

added added

removed removed

Lines of Context:
202
202
def _standard_options(exporter):
203
203
    OPTIONS = option.Option.OPTIONS
204
204
    context = exporter.get_context(option)
205
 
    for name in sorted(OPTIONS.keys()):
 
205
    for name in sorted(OPTIONS):
206
206
        opt = OPTIONS[name]
207
207
        _write_option(exporter, context.from_string(name), opt, "option")
208
208