Patrick Lewis wrote: > > I'm pretty sure I messed that up in a recent change I made. Try this > code instead (line 184) > > reg_base_url = '%s/%s' % (cherrypy.request.base, path) >
After really looking at it, the line should be: reg_base_url = '%s%s' % (cherrypy.request.base, path) I've made changes to the egg distribution. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears -~----------~----~----~----~------~----~------~--~---

