summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/web/WWD_Events.py
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/com/sun/star/wizards/web/WWD_Events.py')
-rw-r--r--wizards/com/sun/star/wizards/web/WWD_Events.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/wizards/com/sun/star/wizards/web/WWD_Events.py b/wizards/com/sun/star/wizards/web/WWD_Events.py
index e6825ac1db83..c378b137dbae 100644
--- a/wizards/com/sun/star/wizards/web/WWD_Events.py
+++ b/wizards/com/sun/star/wizards/web/WWD_Events.py
@@ -808,10 +808,10 @@ class WWD_Events(WWD_Startup):
'''
p = self.getPublisher(ZIP_PUBLISHER)
#replace the '%' with '%25'
- url1 = p.cp_URL.replace("%25", "%")
+ url1 = p.cp_URL.replace("%", "%25")
#replace all '/' with '%2F'
- url1 = url1.replace("%F", "/")
- p.url = "vnd.sun.star.zip://" + url1 + "/";
+ url1 = url1.replace("/", "%2F")
+ p.url = "vnd.sun.star.zip://" + url1 + "/"
'''
and now ftp...