Browse Source

Merge pull request #105494 from YeldhamDev/mirror_on_the_wall_who_is_the_prettiest_of_them_all

Fix missing `gdb.printing` import for the pretty print script
Thaddeus Crews 4 months ago
parent
commit
ec6374990b
1 changed files with 1 additions and 0 deletions
  1. 1 0
      misc/utility/godot_gdb_pretty_print.py

+ 1 - 0
misc/utility/godot_gdb_pretty_print.py

@@ -25,6 +25,7 @@ From there you can figure out how to print it nicely.
 import re
 
 import gdb  # type: ignore
+import gdb.printing  # type: ignore
 
 
 # Printer for Godot StringName variables.