mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
Fix message readability
This commit is contained in:
parent
bed16ae663
commit
a50ab622b7
1 changed files with 4 additions and 4 deletions
|
|
@ -78,10 +78,10 @@ class ValidateSaverResolution(
|
|||
if resolution != expected_resolution:
|
||||
raise PublishValidationError(
|
||||
"The input's resolution does not match "
|
||||
"the asset's resolution {}.\n\n"
|
||||
"The input's resolution is {}".format(
|
||||
expected_resolution,
|
||||
resolution,
|
||||
"the asset's resolution {}x{}.\n\n"
|
||||
"The input's resolution is {}x{}.".format(
|
||||
expected_resolution[0], expected_resolution[1],
|
||||
resolution[0], resolution[1]
|
||||
)
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue