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:
parent
5e80aa818c
commit
d4aef7fd04
1 changed files with 2 additions and 2 deletions
|
@ -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 ""
|
||||
|
||||
|
|
Loading…
Reference in a new issue