diff options
author | Vertexwahn <julian.amann@tum.de> | 2023-04-24 20:13:05 +0200 |
---|---|---|
committer | Vertexwahn <julian.amann@tum.de> | 2023-04-24 21:25:50 +0200 |
commit | 421a74dce4c6f768bfcca94ba62b65ded1d50f7c (patch) | |
tree | 5eb2dcfa7d285ad9c8b9c67f33f8e20acf02ff7a /create_lts.py | |
parent | 4ffaea74c1f5408e0757547a1ca0518ad43fa9f1 (diff) |
Fix some spelling mistakes
Diffstat (limited to 'create_lts.py')
-rwxr-xr-x | create_lts.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/create_lts.py b/create_lts.py index 56170806..642b8847 100755 --- a/create_lts.py +++ b/create_lts.py @@ -33,7 +33,7 @@ def ReplaceStringsInFile(filename, replacement_dict): values Raises: - Exception: A failure occured + Exception: A failure occurred """ f = open(filename, 'r') content = f.read() @@ -62,7 +62,7 @@ def StripContentBetweenTags(filename, strip_begin_tag, strip_end_tag): strip_end_tag: the end of the content to be removed Raises: - Exception: A failure occured + Exception: A failure occurred """ f = open(filename, 'r') content = f.read() |