Mercurial > public > mercurial-scm > hg
comparison mercurial/ui.py @ 8656:284fda4cd093
removed unused imports
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sat, 30 May 2009 23:20:30 +0200 |
parents | 2ed353a413b1 |
children | 3fa92c618624 |
comparison
equal
deleted
inserted
replaced
8655:21688b8a594b | 8656:284fda4cd093 |
---|---|
4 # | 4 # |
5 # This software may be used and distributed according to the terms of the | 5 # This software may be used and distributed according to the terms of the |
6 # GNU General Public License version 2, incorporated herein by reference. | 6 # GNU General Public License version 2, incorporated herein by reference. |
7 | 7 |
8 from i18n import _ | 8 from i18n import _ |
9 import errno, getpass, os, re, socket, sys, tempfile, traceback | 9 import errno, getpass, os, socket, sys, tempfile, traceback |
10 import config, util, error | 10 import config, util, error |
11 | 11 |
12 _booleans = {'1': True, 'yes': True, 'true': True, 'on': True, | 12 _booleans = {'1': True, 'yes': True, 'true': True, 'on': True, |
13 '0': False, 'no': False, 'false': False, 'off': False} | 13 '0': False, 'no': False, 'false': False, 'off': False} |
14 | 14 |