summaryrefslogtreecommitdiff
path: root/scripting
diff options
context:
space:
mode:
authorRene Engelhard <rene@debian.org>2013-08-21 10:11:14 +0200
committerAndras Timar <andras.timar@collabora.com>2013-11-05 11:49:27 +0100
commitda7076bdeb793b46752f4a71b9d08b3705ed9495 (patch)
treedfaf354955f4e25ee68bab55be45f73019f3131d /scripting
parent3c8fba35b272313d8922703c40bf523598e364da (diff)
deb#719941: pythonscript.py: use open() instead of file()
Change-Id: Ib9f06b2b5629d149e932fe37312fdf5e8448c39f Signed-off-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'scripting')
-rwxr-xr-xscripting/source/pyprov/pythonscript.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripting/source/pyprov/pythonscript.py b/scripting/source/pyprov/pythonscript.py
index 3ddcec69b1ed..4d8b6bae6220 100755
--- a/scripting/source/pyprov/pythonscript.py
+++ b/scripting/source/pyprov/pythonscript.py
@@ -70,7 +70,7 @@ def getLogTarget():
userInstallation = pathSubst.getSubstituteVariableValue( "user" )
if len( userInstallation ) > 0:
systemPath = uno.fileUrlToSystemPath( userInstallation + "/Scripts/python/log.txt" )
- ret = file( systemPath , "a" )
+ ret = open( systemPath , "a" )
except:
print("Exception during creation of pythonscript logfile: "+ lastException2String() + "\n, delagating log to stdout\n")
return ret