##// END OF EJS Templates
Update IPython/core/debugger.py...
Matthias Bussonnier -
Show More
@@ -580,7 +580,7 b' class Pdb(OldPdb):'
580 return
580 return
581 if value.lower() not in ("true", "yes", "1", "no", "false", "0"):
581 if value.lower() not in ("true", "yes", "1", "no", "false", "0"):
582 print(
582 print(
583 f"{value} invalid use one of ('true', 'yes', '1', 'no', 'false', '0')"
583 f"{repr(value)} is invalid - use one of ('true', 'yes', '1', 'no', 'false', '0')"
584 )
584 )
585 return
585 return
586
586
General Comments 0
You need to be logged in to leave comments. Login now