~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to command_classes.py

  • Committer: Aaron Bentley
  • Date: 2011-09-25 01:18:55 UTC
  • mfrom: (776.2.1 unused-imports)
  • Revision ID: aaron@aaronbentley.com-20110925011855-3dil4ijgluvzq7q5
Remove unused imports, fix the importing of two error classes. (jelmer)

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
#    along with this program; if not, write to the Free Software
17
17
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
18
 
19
 
import errno
20
 
 
21
19
import bzrlib
22
20
 
23
21
from bzrlib.lazy_import import lazy_import
29
27
from command import BzrToolsCommand
30
28
from errors import CommandError
31
29
from patchsource import BzrPatchSource
32
 
import sys
33
 
import os.path
34
30
 
35
 
import bzrlib.builtins
36
31
import bzrlib.commands
37
32
from bzrlib.branch import Branch
38
 
from bzrlib.bzrdir import BzrDir
39
33
from bzrlib.commands import get_cmd_object
40
34
from bzrlib.errors import BzrCommandError
41
 
import bzrlib.ignores
42
 
from bzrlib.trace import note
43
35
from bzrlib.option import Option, RegistryOption
44
 
from bzrlib.workingtree import WorkingTree
45
 
 
46
 
from command import BzrToolsCommand
47
36
 
48
37
 
49
38
class cmd_graph_ancestry(BzrToolsCommand):