bin/symbolstore.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit d4aef7fd04a1ee999b03194c01f4a792aa1846d8 Author: LeSasse <[email protected]> AuthorDate: Wed Mar 27 09:55:33 2024 +0100 Commit: Noel Grandin <[email protected]> CommitDate: Thu Mar 28 08:50:10 2024 +0100 tdf#158803 unncessary semicolons Change-Id: I47850382ee9c24762298b2e0927cf2b73469503c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165382 Reviewed-by: Noel Grandin <[email protected]> Tested-by: Noel Grandin <[email protected]> diff --git a/bin/symbolstore.py b/bin/symbolstore.py index c6aaa2ecadf8..a09fb8cb3e32 100755 --- a/bin/symbolstore.py +++ b/bin/symbolstore.py @@ -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(' ')[1]; + return output.split(' ')[1] except: return ""
