diff options
author | LeSasse <l.sasse@fz-juelich.de> | 2024-03-27 09:55:33 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-03-28 08:50:10 +0100 |
commit | d4aef7fd04a1ee999b03194c01f4a792aa1846d8 (patch) | |
tree | 211126f388daad498afd307c057a38cc8ae01f0c /bin/symbolstore.py | |
parent | 5e80aa818cae690c67361e85bd37124cec16c05e (diff) |
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>
Diffstat (limited to 'bin/symbolstore.py')
-rwxr-xr-x | bin/symbolstore.py | 4 |
1 files changed, 2 insertions, 2 deletions
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('\t')[1]; + return output.split('\t')[1] except: return "" |