minor bug fix

This commit is contained in:
Miroslav Stampar 2010-10-14 11:12:03 +00:00
parent 162d01abed
commit 255b21f2f4

View File

@ -17,7 +17,10 @@ def tamper(place, value):
for i in xrange(len(value)):
if not firstspace:
firstspace = value[i].isspace()
if value[i].isspace():
firstspace = True
retVal += "/**/"
continue
elif value[i] == '\'':
qoute = not qoute
elif value[i] == '"':