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
currently the exception handling for api calls is limited and makes debugging hard:
try: json_result: dict = mediawiki_api_call_helper(data=payload, login=login, allow_anonymous=allow_anonymous, is_bot=is_bot, **kwargs) except Exception: logging.exception('Error while writing to the Wikibase instance') raise
better
except Exception as ex: # check what type of exception occured and give hints on what to do
The text was updated successfully, but these errors were encountered:
see #459
Sorry, something went wrong.
e.g. look at messages_names=['wikibase-validator-label-with-description-conflict']
see #507
LeMyst
No branches or pull requests
currently the exception handling for api calls is limited and makes debugging hard:
better
The text was updated successfully, but these errors were encountered: