Mercurial > public > mercurial-scm > hg
comparison mercurial/patch.py @ 3891:6b4127c7d52a
Simplify i18n imports
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 14 Dec 2006 20:25:19 -0600 |
parents | abaee83ce0a6 |
children | 0d27502a804c |
comparison
equal
deleted
inserted
replaced
3890:2eec996f2fb9 | 3891:6b4127c7d52a |
---|---|
3 # Copyright 2006 Brendan Cully <brendan@kublai.com> | 3 # Copyright 2006 Brendan Cully <brendan@kublai.com> |
4 # | 4 # |
5 # This software may be used and distributed according to the terms | 5 # This software may be used and distributed according to the terms |
6 # of the GNU General Public License, incorporated herein by reference. | 6 # of the GNU General Public License, incorporated herein by reference. |
7 | 7 |
8 from i18n import gettext as _ | 8 from i18n import _ |
9 from node import * | 9 from node import * |
10 import base85, cmdutil, mdiff, util | 10 import base85, cmdutil, mdiff, util |
11 import cStringIO, email.Parser, errno, os, popen2, re, shutil, sha | 11 import cStringIO, email.Parser, errno, os, popen2, re, shutil, sha |
12 import sys, tempfile, zlib | 12 import sys, tempfile, zlib |
13 | 13 |