Sometimes the debugger abbreviates a run-time error message as shown below
(Pdb) n
> p:\hhu\updater4.py(136)make_and_execute_insert()
-> result = dbops.do( db.cursor, query.encode( 'utf-8' ) )
(Pdb) n
UnicodeDecodeError: UnicodeD...ge(128)')
> p:\hhu\updater4.py(136)make_and_execute_insert()
-> result = dbops.do( db.cursor, query.encode( 'utf-8' ) )
(Pdb)
When it does this I can't read the error message. Can somebody tell me how to stop this happening please?