changeset 89:f9a8852a9552

fixed \h2 > bug
author catherine@localhost
date Tue, 20 May 2008 15:37:02 -0400
parents d3da34473a8e
children 5c73ebfdb24c
files sqlpyPlus.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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):