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.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac 
Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/trac-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to