Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixing typo in exception #274

Merged
merged 1 commit into from
May 21, 2021
Merged

fixing typo in exception #274

merged 1 commit into from
May 21, 2021

Conversation

dlakaplan
Copy link
Contributor

Fixes a typo in an exception:

        if itype not in types:
            raise Exception(
                "Image type not recognised. Valid entries are"
                " 'COMBINED' or 'TILE'."
            )

to

        if itype not in types:
            raise Exception(
                "Image type not recognised. Valid entries are"
                " 'COMBINED' or 'TILES'."
            )

since the first exception was incompatible with the actual value check.

Copy link
Collaborator

@ajstewart ajstewart left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@ajstewart ajstewart merged commit 56a1042 into askap-vast:dev May 21, 2021
@ajstewart
Copy link
Collaborator

dev may be a bit unstable at the moment, so thanks for spotting this. Yet to do full tests.

@dlakaplan
Copy link
Contributor Author

dlakaplan commented May 21, 2021 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants