##// END OF EJS Templates
Make sure prompt color doesn't affect rest of line
Gábor Luk -
Show More
@@ -271,7 +271,7 b' class Pdb(OldPdb):'
271 271
272 272 # Set the prompt
273 273 Colors = cst.active_colors
274 self.prompt = u'%s%s' % (Colors.prompt, prompt) # The default prompt is '(Pdb)'
274 self.prompt = u'%s%s%s' % (Colors.prompt, prompt, Colors.Normal) # The default prompt is '(Pdb)'
275 275
276 276 def set_colors(self, scheme):
277 277 """Shorthand access to the color table scheme selector method."""
General Comments 0
You need to be logged in to leave comments. Login now