Mercurial > public > mercurial-scm > hg
comparison hgext/graphlog.py @ 10333:b9e44cc97355
graphlog: remove unused import
author | Christian Ebert <blacktrash@gmx.net> |
---|---|
date | Wed, 03 Feb 2010 16:09:19 +0000 |
parents | d6512b3e9ac0 |
children | d757bc0c7865 |
comparison
equal
deleted
inserted
replaced
10332:f64160f28b3f | 10333:b9e44cc97355 |
---|---|
10 This extension adds a --graph option to the incoming, outgoing and log | 10 This extension adds a --graph option to the incoming, outgoing and log |
11 commands. When this options is given, an ASCII representation of the | 11 commands. When this options is given, an ASCII representation of the |
12 revision graph is also shown. | 12 revision graph is also shown. |
13 ''' | 13 ''' |
14 | 14 |
15 import os, sys | 15 import os |
16 from mercurial.cmdutil import revrange, show_changeset | 16 from mercurial.cmdutil import revrange, show_changeset |
17 from mercurial.commands import templateopts | 17 from mercurial.commands import templateopts |
18 from mercurial.i18n import _ | 18 from mercurial.i18n import _ |
19 from mercurial.node import nullrev | 19 from mercurial.node import nullrev |
20 from mercurial import bundlerepo, changegroup, cmdutil, commands, extensions | 20 from mercurial import bundlerepo, changegroup, cmdutil, commands, extensions |