Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/repo.py @ 5455:08d6e8754388
import gettext since '_' is used
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Thu, 11 Oct 2007 16:26:14 +0200 |
parents | 65dc707606ed |
children | a079cf630065 |
comparison
equal
deleted
inserted
replaced
5454:f2ca8d2c988f | 5455:08d6e8754388 |
---|---|
3 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> | 3 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> |
4 # Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com> | 4 # Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com> |
5 # | 5 # |
6 # This software may be used and distributed according to the terms | 6 # This software may be used and distributed according to the terms |
7 # of the GNU General Public License, incorporated herein by reference. | 7 # of the GNU General Public License, incorporated herein by reference. |
8 | |
9 from i18n import _ | |
8 | 10 |
9 class RepoError(Exception): | 11 class RepoError(Exception): |
10 pass | 12 pass |
11 | 13 |
12 class NoCapability(RepoError): | 14 class NoCapability(RepoError): |