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
krampus/kinder/lambda_funcs.py
Line 36 in 738f006
>>> try: ... raise ValueError ... except Exception as e: ... print("could not delete function '%s', unknown error: %s" % str(e)) ... Traceback (most recent call last): File "<input>", line 2, in <module> ValueError During handling of the above exception, another exception occurred: Traceback (most recent call last): File "<input>", line 4, in <module> TypeError: not enough arguments for format string # minimal example >>> "could not delete function '%s', unknown error: %s" % "Exception string..." Traceback (most recent call last): File "<input>", line 1, in <module> TypeError: not enough arguments for format string
It seems like adding self.func as the first string might be the answer:
self.func
KLog.log("could not delete function '%s', unknown error: %s" % (self.func, str(e)), "critical")
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
krampus/kinder/lambda_funcs.py
Line 36 in 738f006
It seems like adding
self.func
as the first string might be the answer:The text was updated successfully, but these errors were encountered: