~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tsort.py

  • Committer: Martin Pool
  • Date: 2008-03-01 09:11:39 UTC
  • mto: This revision was merged to the branch mainline in revision 3253.
  • Revision ID: mbp@sourcefrog.net-20080301091139-iwnt5j6380oxnlw5
Fix up import of tsort

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2008 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
19
19
 
20
20
 
21
21
from bzrlib import errors
22
 
from bzrlib import revision as _mod_revision
 
22
import bzrlib.revision as _mod_revision
23
23
 
24
24
 
25
25
__all__ = ["topo_sort", "TopoSorter", "merge_sort", "MergeSorter"]