# HG changeset patch # User catherine@cordelia # Date 1211707860 14400 # Node ID 84a26822e28cadffdb9eb0138ddee9fedaa7f009 # Parent 5df8e2477ca3e01174417a51495c3a215d59aa9f was crashing on print diff -r 5df8e2477ca3 -r 84a26822e28c sqlpyPlus.py --- a/sqlpyPlus.py Sun May 25 05:22:34 2008 -0400 +++ b/sqlpyPlus.py Sun May 25 05:31:00 2008 -0400 @@ -780,7 +780,7 @@ if arg[0] == ':': arg = arg[1:] try: - self.stdout.write(self.binds[arg]+'\n') + self.stdout.write(str(self.binds[arg])+'\n') except KeyError: self.stdout.write('No bind variable %s\n' % arg) else: