hgext/graphlog.py
changeset 10333 b9e44cc97355
parent 10264 d6512b3e9ac0
child 10365 d757bc0c7865
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