Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/OP-2053_Add-validator-to…
Browse files Browse the repository at this point in the history
…-check-correct-version-of-extension-for-PS-and-AE' into feature/OP-2053_Add-validator-to-check-correct-version-of-extension-for-PS-and-AE
  • Loading branch information
kalisp committed Dec 14, 2021
2 parents b2644d3 + 02717fa commit 621118c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ def process(self, context):
expected_version = found[0][1]

if expected_version != installed_version:
msg = "Expected version '{}' found '{}'\n".format(
expected_version, installed_version)
msg += "Please update your installed extension, it might not work "
msg += "properly."
msg = (
"Expected version '{}' found '{}'\n Please update"
" your installed extension, it might not work properly."
).format(expected_version, installed_version)

raise ValueError(msg)

0 comments on commit 621118c

Please sign in to comment.