# HG changeset patch # User catherine@localhost # Date 1211312222 14400 # Node ID f9a8852a9552579b5d70b7bb6e6dc756986365e7 # Parent d3da34473a8e1e77d16a51168e8d14d5aa211fb5 fixed \h2 > bug diff -r d3da34473a8e -r f9a8852a9552 sqlpyPlus.py --- 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):