tdf#158803 unncessary semicolons

Change-Id: I47850382ee9c24762298b2e0927cf2b73469503c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165382
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
LeSasse 2024-03-27 09:55:33 +01:00 committed by Noel Grandin
parent 5e80aa818c
commit d4aef7fd04

View file

@ -290,7 +290,7 @@ def GetVCSFilename(file, srcdir):
root = fileInfo.root
elif os.path.isdir(os.path.join(path, ".svn")) or \
os.path.isdir(os.path.join(path, "_svn")):
fileInfo = SVNFileInfo(file);
fileInfo = SVNFileInfo(file)
vcsFileInfoCache[file] = fileInfo
if fileInfo:
@ -599,7 +599,7 @@ class Dumper_Solaris(Dumper):
"""Utility function, returns the output of file(1)"""
try:
output = os.popen("file " + file).read()
return output.split('\t')[1];
return output.split('\t')[1]
except:
return ""