We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It looks like all custom rucio exceptions are calling super().init(args, kwargs) with the wrong arguments.
The syntax should be super().init(*args, **kwargs)
The text was updated successfully, but these errors were encountered:
Merge pull request #683 from TWAtGH/patch-679-fix_exception_classes
b5448a1
core: fixed subclasses of RucioException Fix #679
Merge pull request #682 from TWAtGH/patch-679-fix_exception_classes
1bdc127
TWAtGH
Successfully merging a pull request may close this issue.
Motivation
It looks like all custom rucio exceptions are calling super().init(args, kwargs) with the wrong arguments.
Modification
The syntax should be super().init(*args, **kwargs)
Expected behavior
The text was updated successfully, but these errors were encountered: