Skip to content

Commit b8a2377

Browse files
committed
Remove some debug print()s
Signed-off-by: Cole Robinson <[email protected]>
1 parent 82d3d45 commit b8a2377

2 files changed

Lines changed: 0 additions & 4 deletions

File tree

bugzilla/base.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1257,9 +1257,6 @@ def query(self, query):
12571257
except Exception as e:
12581258
# Try to give a hint in the error message if url_to_query
12591259
# 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))
12631260
if ("query_format" not in str(e) or
12641261
not BugzillaError.get_bugzilla_error_code(e) or
12651262
self._check_version(5, 0)):

tests/mockbackend.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ def __helper(self, args):
3434
raise func_return
3535

3636
if isinstance(func_args, dict):
37-
print(args[-1])
3837
assert func_args == args[-1]
3938
elif func_args is not None:
4039
tests.utils.diff_compare(args[-1], func_args)

0 commit comments

Comments
 (0)