Skip to content

Commit 215f872

Browse files
committed
module
1 parent c9f0d61 commit 215f872

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

httpdbg/initiator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -239,14 +239,14 @@ def httpdbg_initiator(
239239
str_module = (
240240
f"{original_method.__module__}."
241241
if hasattr(original_method, "__module__")
242-
else ""
242+
else "***"
243243
)
244244
str_name = (
245245
f"{original_method.__name__}"
246246
if hasattr(original_method, "__name__")
247247
else "***"
248248
)
249-
short_stack += f"----------\n{str_module}{str_name}(\n"
249+
short_stack += f"----------\n{str_module}.{str_name}(\n"
250250
for k, v in callargs.items():
251251
short_stack += f" {k}={v}\n"
252252
short_stack += ")"

0 commit comments

Comments
 (0)