insitu wrote: > Hello, > I have an annoying problem with version control support in trac. I > upgraded to python 2.5, then did a fresh install of trac and some > plugins (webadmin, xmlrpc and mercurial). After some fiddling, it > works ok but for the version control support: > > in my trac.ini, I have > > tracvc.hg.* = enabled > > and > > repository_dir = /some/repo/path > repository_type = hg > > I got a stack trace: > ... > TracError: Unsupported version control system "hg" > > If I use svn instead, I got the same problem. >
Either versioncontrol subsystem needs to have access to the supporting libraries: - the Subversion bindings for Python, for "svn" - the Mercurial libraries for "hg" You can place those libraries in the site-packages of your Python installation or extend the PYTHONPATH so that it includes the folder containing those packages. See http://trac.edgewall.org/wiki/TracSubversion#Checklist for tips for "svn". -- Christian --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" 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-users?hl=en -~----------~----~----~----~------~----~------~--~---
