From 45b5f1ad1d456d935de881473050d13c660d7b06 Mon Sep 17 00:00:00 2001 From: baldurk Date: Thu, 27 Aug 2026 16:34:36 +0100 Subject: [PATCH] Remove debug print --- qrenderdoc/Code/pyrenderdoc/PythonContext.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/qrenderdoc/Code/pyrenderdoc/PythonContext.cpp b/qrenderdoc/Code/pyrenderdoc/PythonContext.cpp index cc6f5fa9e..935b0b3b4 100644 --- a/qrenderdoc/Code/pyrenderdoc/PythonContext.cpp +++ b/qrenderdoc/Code/pyrenderdoc/PythonContext.cpp @@ -1811,7 +1811,6 @@ def publicise_module(mod): continue obj = getattr(mod, name) if hasattr(obj, '__module__') and mod.__name__ not in getattr(obj, '__module__'): - print(f"{name} is {obj.__module__} vs {mod.__name__}") continue globals()[name] = obj