Skip to content

Commit

Permalink
removes invalid email address and replaces it with a valid one
Browse files Browse the repository at this point in the history
  • Loading branch information
christophkloeffel committed Jun 14, 2024
1 parent 2b8296c commit b145246
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 9 deletions.
1 change: 1 addition & 0 deletions lobster/tools/core/online_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ def main():

rel_path_from_root = os.path.relpath(item.location.filename,
repo_root)
# pylint: disable=possibly-used-before-assignment
actual_repo = gh_root
actual_sha = options.commit
actual_path = rel_path_from_root
Expand Down
1 change: 1 addition & 0 deletions lobster/tools/trlc/trlc.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,7 @@ def main():
ok = False
if ok:
stab = sm.process()
# pylint: disable=possibly-used-before-assignment
if not ok or stab is None:
print("lobster-trlc: aborting due to earlier error")
return 1
Expand Down
2 changes: 1 addition & 1 deletion packages/lobster-core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
name="bmw-lobster-core",
version=version.LOBSTER_VERSION,
author="Bayerische Motoren Werke Aktiengesellschaft (BMW AG)",
author_email="florian.schanda@bmw.de",
author_email="philipp.wullstein-kammler@bmw.de",
description="Lightweight Open BMW Software Traceability Evidence Report",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion packages/lobster-metapackage/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
name="bmw-lobster",
version=version.LOBSTER_VERSION,
author="Bayerische Motoren Werke Aktiengesellschaft (BMW AG)",
author_email="florian.schanda@bmw.de",
author_email="philipp.wullstein-kammler@bmw.de",
description="Metapackage to install all LOBSTER Tools",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion packages/lobster-monolithic/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
name="bmw-lobster-monolithic",
version=version.LOBSTER_VERSION,
author="Bayerische Motoren Werke Aktiengesellschaft (BMW AG)",
author_email="florian.schanda@bmw.de",
author_email="philipp.wullstein-kammler@bmw.de",
description="Monolithic package for all LOBSTER Tools",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion packages/lobster-tool-codebeamer/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
name="bmw-lobster-tool-codebeamer",
version=version.LOBSTER_VERSION,
author="Bayerische Motoren Werke Aktiengesellschaft (BMW AG)",
author_email="florian.schanda@bmw.de",
author_email="philipp.wullstein-kammler@bmw.de",
description="LOBSTER Tool for Codebeamer",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion packages/lobster-tool-cpp/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
name="bmw-lobster-tool-cpp",
version=version.LOBSTER_VERSION,
author="Bayerische Motoren Werke Aktiengesellschaft (BMW AG)",
author_email="florian.schanda@bmw.de",
author_email="philipp.wullstein-kammler@bmw.de",
description="LOBSTER Tool for ISO C/C++",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion packages/lobster-tool-gtest/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
name="bmw-lobster-tool-gtest",
version=version.LOBSTER_VERSION,
author="Bayerische Motoren Werke Aktiengesellschaft (BMW AG)",
author_email="florian.schanda@bmw.de",
author_email="philipp.wullstein-kammler@bmw.de",
description="LOBSTER Tool for GoogleTest",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion packages/lobster-tool-json/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
name="bmw-lobster-tool-json",
version=version.LOBSTER_VERSION,
author="Bayerische Motoren Werke Aktiengesellschaft (BMW AG)",
author_email="florian.schanda@bmw.de",
author_email="philipp.wullstein-kammler@bmw.de",
description="LOBSTER Tool for JSON",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion packages/lobster-tool-python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
name="bmw-lobster-tool-python",
version=version.LOBSTER_VERSION,
author="Bayerische Motoren Werke Aktiengesellschaft (BMW AG)",
author_email="florian.schanda@bmw.de",
author_email="philipp.wullstein-kammler@bmw.de",
description="LOBSTER Tool for Python3",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion packages/lobster-tool-trlc/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
name="bmw-lobster-tool-trlc",
version=version.LOBSTER_VERSION,
author="Bayerische Motoren Werke Aktiengesellschaft (BMW AG)",
author_email="florian.schanda@bmw.de",
author_email="philipp.wullstein-kammler@bmw.de",
description="LOBSTER Tool for TRLC",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit b145246

Please sign in to comment.