# HG changeset patch # User catherine@Elli.myhome.westell.com # Date 1226608370 18000 # Node ID e26523dd0aebab63ca0f8d3d7eb6a9842c9e65f5 # Parent b2683d01a72f9bceee7a37b7154d8374e52ac80f terminator bugs fixed diff -r b2683d01a72f -r e26523dd0aeb sqlpython/sqlpyPlus.py --- a/sqlpython/sqlpyPlus.py Thu Nov 13 14:54:07 2008 -0500 +++ b/sqlpython/sqlpyPlus.py Thu Nov 13 15:32:50 2008 -0500 @@ -926,7 +926,7 @@ arg = self.parsed(arg) targets = arg.unterminated.split() for target in targets: - self.do_select('* from %s%s%s' % (target, arg.terminator or ';', arg.rowlimit)) # permissive of space before terminator + self.do_select('* from %s%s%s' % (target, arg.terminator, arg.rowlimit)) # permissive of space before terminator @options([make_option('-i', '--ignore-case', dest='ignorecase', action='store_true', help='Case-insensitive search')]) def do_grep(self, arg, opts):