bin/symbolstore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 3f7923ebac4c87aa2966e6f19b506dfeda8fbdb8 Author: LeSasse <[email protected]> AuthorDate: Wed Mar 27 09:27:20 2024 +0100 Commit: Noel Grandin <[email protected]> CommitDate: Thu Mar 28 08:44:15 2024 +0100 tdf#158803 fix typo NotImplementedErrors -> NotImplementedError Change-Id: I2d75dc6a40c0f2ab294d3e279cc0ca7a0c8f619f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165371 Reviewed-by: Noel Grandin <[email protected]> Tested-by: Noel Grandin <[email protected]> diff --git a/bin/symbolstore.py b/bin/symbolstore.py index 3e7b6f7799f7..c3a2df086084 100755 --- a/bin/symbolstore.py +++ b/bin/symbolstore.py @@ -120,7 +120,7 @@ class VCSFileInfo: def GetCleanRoot(self): """ This method should return the repository root for the file or 'None' on failure. """ - raise NotImplementedErrors + raise NotImplementedError def GetRevision(self): """ This method should return the revision number for the file or 'None'
