Same problem here after upgrading to trac 1.0 and python 2.6, and can't find any feedback, trac ticket nor the ability to create a ticket, so I debugged it. The revision argument is passed in to the function _sync in trac/versioncontrol/admin.py, then on to sync_changeset. The argument is obviously a string from the command line, and sync_changeset wants a number. So, in /usr/lib/python2.6/site-packages/Trac-1.0-py2.6.egg/trac/versioncontrol/admin.py (or something like it), replace this line: repos.sync_changeset(rev) with: repos.sync_changeset(int(rev))
and its operational again. -- You received this message because you are subscribed to the Google Groups "Trac Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/trac-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
