From 78c2bffe616315c9c5f885f44ae0140fbd580636 Mon Sep 17 00:00:00 2001 From: Christophe Dumez <christophe@nexedi.com> Date: Fri, 12 May 2006 08:54:31 +0000 Subject: [PATCH] - use os.path.join() instead of doing it manually git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@7231 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5Subversion/Tool/SubversionTool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product/ERP5Subversion/Tool/SubversionTool.py b/product/ERP5Subversion/Tool/SubversionTool.py index 3273c0fc01..6f8b87bdb6 100644 --- a/product/ERP5Subversion/Tool/SubversionTool.py +++ b/product/ERP5Subversion/Tool/SubversionTool.py @@ -454,7 +454,7 @@ class SubversionTool(BaseTool, UniqueObject, Folder): if tmp: extension = tmp.string[tmp.start():tmp.end()].strip() edit_path = edit_path[:-len(extension)] - edit_path = bt.REQUEST["BASE2"] + '/' + edit_path + '/manage_main' + edit_path = os.path.join(bt.REQUEST["BASE2"], edit_path, 'manage_main') return edit_path def _encodeLogin(self, realm, user, password): -- 2.30.9