We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82d3d45 commit b8a2377Copy full SHA for b8a2377
2 files changed
bugzilla/base.py
@@ -1257,9 +1257,6 @@ def query(self, query):
1257
except Exception as e:
1258
# Try to give a hint in the error message if url_to_query
1259
# isn't supported by this bugzilla instance
1260
- print("query_format" in str(e))
1261
- print(BugzillaError.get_bugzilla_error_code(e))
1262
- print(self._check_version(5, 0))
1263
if ("query_format" not in str(e) or
1264
not BugzillaError.get_bugzilla_error_code(e) or
1265
self._check_version(5, 0)):
tests/mockbackend.py
@@ -34,7 +34,6 @@ def __helper(self, args):
34
raise func_return
35
36
if isinstance(func_args, dict):
37
- print(args[-1])
38
assert func_args == args[-1]
39
elif func_args is not None:
40
tests.utils.diff_compare(args[-1], func_args)
0 commit comments