Mercurial > public > mercurial-scm > hg
comparison hgext/graphlog.py @ 6212:e75aab656f46
Remove unused imports
author | Joel Rosdahl <joel@rosdahl.net> |
---|---|
date | Thu, 06 Mar 2008 22:23:41 +0100 |
parents | cd65a67aff31 |
children | 53465a7464e2 d76f64cd4cb2 |
comparison
equal
deleted
inserted
replaced
6211:f89fd07fc51d | 6212:e75aab656f46 |
---|---|
8 import os | 8 import os |
9 import sys | 9 import sys |
10 from mercurial.cmdutil import revrange, show_changeset | 10 from mercurial.cmdutil import revrange, show_changeset |
11 from mercurial.commands import templateopts | 11 from mercurial.commands import templateopts |
12 from mercurial.i18n import _ | 12 from mercurial.i18n import _ |
13 from mercurial.node import nullid, nullrev | 13 from mercurial.node import nullrev |
14 from mercurial.util import Abort, canonpath | 14 from mercurial.util import Abort, canonpath |
15 | 15 |
16 def revision_grapher(repo, start_rev, stop_rev): | 16 def revision_grapher(repo, start_rev, stop_rev): |
17 """incremental revision grapher | 17 """incremental revision grapher |
18 | 18 |