From 75fba67127333c9f3ceb9c014e6de142f9754189 Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Fri, 16 Jan 2009 00:04:53 -0800 Subject: [PATCH] remove extra slash from a previous commit.. [git-p4: depot-paths = "//depot/": change = 1279] --- pymeds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymeds.py b/pymeds.py index e100213..a0223a1 100755 --- a/pymeds.py +++ b/pymeds.py @@ -151,7 +151,7 @@ def makeService(config): # This sets up the root to be the media dir so we don't have to # enumerate the directory. cds = ContentDirectoryServer(config['title'], klass=FSDirectory, - path=config['path'], urlbase=urlparse.urljoin(urlbase, 'content/'), + path=config['path'], urlbase=urlparse.urljoin(urlbase, 'content'), webbase=content) debug.insertnamespace('cds', cds) root.putChild('ContentDirectory', cds)