Mercurial > sqlpython
diff sqlpyPlus.py @ 89:f9a8852a9552
fixed \h2 > bug
author | catherine@localhost |
---|---|
date | Tue, 20 May 2008 15:37:02 -0400 |
parents | d3da34473a8e |
children | 51e1fe3adf0e |
line wrap: on
line diff
--- a/sqlpyPlus.py Tue May 20 12:04:00 2008 -0400 +++ b/sqlpyPlus.py Tue May 20 15:37:02 2008 -0400 @@ -475,7 +475,7 @@ result = sqlpython.pmatrix(self.rows, self.curs.description, self.maxfetch) return result - statementEndPattern = re.compile(r'(.*)(;|\\[gGhtxicCsS])\s*(\d*)$', re.DOTALL | re.MULTILINE) + statementEndPattern = re.compile(r'(.*)(;|\\[gGhtxicCsS])\s*(\d*)\s*$', re.DOTALL | re.MULTILINE) # what about quote-enclosed? def findTerminator(self, statement):