~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/export_pot.py

  • Committer: Jelmer Vernooij
  • Date: 2011-12-19 13:23:58 UTC
  • mto: This revision was merged to the branch mainline in revision 6386.
  • Revision ID: jelmer@canonical.com-20111219132358-uvs5a6y92gomzacd
Move importing from future until after doc string, otherwise the doc string will disappear.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
# The normalize function is taken from pygettext which is distributed
18
18
# with Python under the Python License, which is GPL compatible.
19
19
 
20
 
from __future__ import absolute_import
21
 
 
22
20
"""Extract docstrings from Bazaar commands.
23
21
 
24
22
This module only handles bzrlib objects that use strings not directly wrapped
28
26
is also left to that stage of the process.
29
27
"""
30
28
 
 
29
from __future__ import absolute_import
 
30
 
31
31
import inspect
32
32
import os
33
33