diff options
-rw-r--r-- | wizards/com/sun/star/wizards/common/FileAccess.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wizards/com/sun/star/wizards/common/FileAccess.py b/wizards/com/sun/star/wizards/common/FileAccess.py index 2740b7aa3c3e..c58f6d4b424c 100644 --- a/wizards/com/sun/star/wizards/common/FileAccess.py +++ b/wizards/com/sun/star/wizards/common/FileAccess.py @@ -129,7 +129,7 @@ class FileAccess(object): def getPath(self, parentURL, childURL): string = "" - if childURL is not None and childURL is not "": + if childURL is not None and childURL != "": string = "/" + childURL return self.filenameConverter.getSystemPathFromFileURL( parentURL + string) |