~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/i18n.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:
20
20
 
21
21
# This module is copied from Bazaar Explorer and modified for bzr.
22
22
 
 
23
"""i18n and l10n support for Bazaar."""
 
24
 
23
25
from __future__ import absolute_import
24
26
 
25
 
"""i18n and l10n support for Bazaar."""
26
 
 
27
27
import gettext as _gettext
28
28
import os
29
29
import sys