Georg
unread,Jul 6, 2009, 5:59:07 PM7/6/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to trac...@googlegroups.com
Hi,
I'm getting an invalid keyword arg error from ui.__init__() when using Trac multirepos and the Mercurial plugin on top of the recently released Hg 1.3. It seems the Hg API has changed, they don't accept an interactive flag as a kwarg any more.
I get it to work with simply removing the offending line:
hunter[22]$ svk diff
=== tracext/hg/backend.py
==================================================================
--- tracext/hg/backend.py (revision 8344)
+++ tracext/hg/backend.py (local)
@@ -284,7 +284,6 @@
class trac_ui(ui):
def __init__(self, log, *args, **kwargs):
kwargs = kwargs.copy()
- kwargs['interactive'] = False
ui.__init__(self, *args, **kwargs)
self.log = log
--
Regards,
Georg.