I did some debugging.
The problem is that inside _get_functions(self): the cmd string gets set to 
"\"close\"" instead of "close".
These additional " cause my problem. I guess the problem is caused 
by Python 2.7.3rc2, used by debian wheezy.

As  a workaround i added one line 
to /usr/lib/python2.7/dist-packages/tracopt/ticket/commit_updater.py : 
_parse_message()
            func = functions.get(cmd.lower())
+          if not func: func = functions.get("\"%s\""%cmd.lower())
            if not func and self.commands_refs.strip() == '<ALL>':

You also need to remove the commit_update.pyc file and restart apache.


Am Sonntag, 1. Juli 2012 00:54:48 UTC+2 schrieb RjOllos:
>
> Some otheres were reporting this issue recently. You might want to take a 
> look at:
>
> https://groups.google.com/d/topic/trac-users/BV1K8shUi6U/discussion
>

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/trac-users/-/MrXUHZUc9SkJ.
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-users?hl=en.

Reply via email to