From 3229d2294221a0cc7c4d6ac9dea5db012eb25eb0 Mon Sep 17 00:00:00 2001 From: Jean-Paul Smets <jp@nexedi.com> Date: Mon, 26 Mar 2007 18:52:11 +0000 Subject: [PATCH] Missing parenthesis. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@13680 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5/Tool/ContributionOpener.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product/ERP5/Tool/ContributionOpener.py b/product/ERP5/Tool/ContributionOpener.py index 418ab9c0eb..d802ddebd5 100644 --- a/product/ERP5/Tool/ContributionOpener.py +++ b/product/ERP5/Tool/ContributionOpener.py @@ -54,7 +54,7 @@ class DirectoryFileHandler(FileHandler): try: file_list = dircache.listdir(localfile) s = StringIO() - s.write('<html><head><base href="%s"/></head><body>' % 'file:' + file) + s.write('<html><head><base href="%s"/></head><body>' % ('file:' + file)) for f in file_list: s.write('<p><a href="%s/">%s</a></p>\n' % (urllib.quote(f), f)) s.write('</body></html>') -- 2.30.9