Skip to content
Snippets Groups Projects
Commit 253bda94 authored by Idan Kamara's avatar Idan Kamara
Browse files

graphlog: remove unused arg from _wrapcmd

parent c238b12a
No related merge requests found
......@@ -383,7 +383,7 @@
def uisetup(ui):
'''Initialize the extension.'''
_wrapcmd(ui, 'log', commands.table, graphlog)
_wrapcmd(ui, 'incoming', commands.table, gincoming)
_wrapcmd(ui, 'outgoing', commands.table, goutgoing)
_wrapcmd('log', commands.table, graphlog)
_wrapcmd('incoming', commands.table, gincoming)
_wrapcmd('outgoing', commands.table, goutgoing)
......@@ -389,5 +389,5 @@
def _wrapcmd(ui, cmd, table, wrapfn):
def _wrapcmd(cmd, table, wrapfn):
'''wrap the command'''
def graph(orig, *args, **kwargs):
if kwargs['graph']:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment