Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/sshrepo.py @ 1400:cf9a1233738a
i18n first part: make '_' available for files who need it
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org |
---|---|
date | Tue, 18 Oct 2005 18:37:48 -0700 |
parents | 20abfd48e21c |
children | 9d2c2e6b32b5 |
comparison
equal
deleted
inserted
replaced
1399:9a70776e355e | 1400:cf9a1233738a |
---|---|
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 node import * | 8 from node import * |
9 from remoterepo import * | 9 from remoterepo import * |
10 from i18n import gettext as _ | |
10 from demandload import * | 11 from demandload import * |
11 demandload(globals(), "hg os re stat") | 12 demandload(globals(), "hg os re stat") |
12 | 13 |
13 class sshrepository(remoterepository): | 14 class sshrepository(remoterepository): |
14 def __init__(self, ui, path): | 15 def __init__(self, ui, path): |