Remove bogus single quote handling
This commit is contained in:
parent
c78cc7a2b0
commit
5e45184480
1 changed files with 0 additions and 4 deletions
|
@ -119,10 +119,6 @@ def string_strip(value):
|
|||
value = value[1:]
|
||||
if value.endswith('"'):
|
||||
value = value[:-1]
|
||||
if value.startswith("'"):
|
||||
value = value[1:]
|
||||
if value.endswith("'"):
|
||||
value = value[:-1]
|
||||
return value
|
||||
|
||||
def attr_strip(value):
|
||||
|
|
Loading…
Add table
Reference in a new issue