summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2012-12-17 19:53:03 +0100
committerXisco Fauli <anistenis@gmail.com>2012-12-17 19:59:23 +0100
commit9fc8010b757b6ea88370ad0065209e08656a9a76 (patch)
tree7ba410d236f89f468cb8838cf23f38771a03e093 /wizards
parent244da713e5b08ec3724ed6870757fb0f55d30611 (diff)
pywizards: absolutize fails in Windows with backslash
I don't have a way to test it in Windows, so I hope it fixed now Change-Id: I0f24aadb26c0d091fa95d9fcc655fa876c4b18db
Diffstat (limited to 'wizards')
-rw-r--r--wizards/com/sun/star/wizards/document/OfficeDocument.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/wizards/com/sun/star/wizards/document/OfficeDocument.py b/wizards/com/sun/star/wizards/document/OfficeDocument.py
index 1211d0bd2a08..2e892a4cb6ea 100644
--- a/wizards/com/sun/star/wizards/document/OfficeDocument.py
+++ b/wizards/com/sun/star/wizards/document/OfficeDocument.py
@@ -16,8 +16,9 @@
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
#
import uno
+import os.path
import traceback
-from unohelper import absolutize, systemPathToFileUrl
+from unohelper import systemPathToFileUrl
from ..ui.event.CommonListener import TerminateListenerProcAdapter
from ..common.Desktop import Desktop
@@ -209,10 +210,8 @@ class OfficeDocument(object):
else:
oStoreProperties = list(range(0))
- sPath = StorePath[:(StorePath.rfind("/") + 1)]
- sFile = StorePath[(StorePath.rfind("/") + 1):]
xComponent.storeToURL(
- absolutize(systemPathToFileUrl(sPath), sFile),
+ os.path.abspath(systemPathToFileUrl(StorePath)),
tuple(oStoreProperties))
return True
except ErrorCodeIOException: