File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -411,7 +411,7 @@ def genCmpPayload():
411411 if not Backend .getIdentifiedDbms ():
412412 warnMsg = "using unescaped version of the test "
413413 warnMsg += "because of zero knowledge of the "
414- warnMsg += "back-end DBMS. you can try to "
414+ warnMsg += "back-end DBMS. You can try to "
415415 warnMsg += "explicitly set it using the --dbms "
416416 warnMsg += "option"
417417 singleTimeWarnMessage (warnMsg )
Original file line number Diff line number Diff line change 88"""
99
1010import codecs
11- import cStringIO
1211import re
1312import os
13+ import StringIO
1414import threading
1515
1616from lib .core .common import Backend
@@ -75,7 +75,7 @@ def __formatString(self, inpStr):
7575 def setOutputFile (self ):
7676 self .__outputFile = "%s%slog" % (conf .outputPath , os .sep )
7777 self .__outputFP = codecs .open (self .__outputFile , "ab" , UNICODE_ENCODING )
78- self .__outputBP = cStringIO .StringIO ()
78+ self .__outputBP = StringIO .StringIO ()
7979
8080 def getOutputFile (self ):
8181 return self .__outputFile
You can’t perform that action at this time.
0 commit comments