On Wed, Apr 29, 2009 at 5:30 PM, <[email protected]> wrote: > # HG changeset patch > # User Trey Roessig > # Date 1241043927 25200 > # Node ID 1445e887b24d256f6e3a71961fc7d2e48879542b > # Parent 421941618b5cb5d8900fea7181015ba047b524c0 > hgtk: bug fix in table options > > added empty default to status option to prevent > status dialog from crashing. > > diff -r 421941618b5c -r 1445e887b24d hggtk/hgtk.py > --- a/hggtk/hgtk.py Wed Apr 29 12:35:17 2009 -0700 > +++ b/hggtk/hgtk.py Wed Apr 29 15:25:27 2009 -0700 > @@ -581,7 +581,7 @@ > "^shelve|unshelve": (shelve, [], _('hgtk shelve')), > "^synch|pull|push|incoming|outgoing|email": (synch, [], _('hgtk synch')), > "^status|st": (status, > - [('r', 'rev', _('revisions to campare'))], > + [('r', 'rev', '', _('revisions to compare'))],
The third parameter actually needed to be an empty list, [] so I fixed up your patch and pushed it. Thanks. -- Steve Borho ------------------------------------------------------------------------------ Register Now & Save for Velocity, the Web Performance & Operations Conference from O'Reilly Media. Velocity features a full day of expert-led, hands-on workshops and two days of sessions from industry leaders in dedicated Performance & Operations tracks. Use code vel09scf and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf _______________________________________________ Tortoisehg-develop mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/tortoisehg-develop
