Rename smartquotable to notsmartquotable for intelligibility

This commit is contained in:
jfbu 2017-12-30 11:03:43 +01:00
parent 8c72f98c78
commit 0059c05a85

View File

@ -346,5 +346,5 @@ class SphinxSmartQuotes(SmartQuotes):
texttype = {True: 'literal', # "literal" text is not changed:
False: 'plain'}
for txtnode in txtnodes:
smartquotable = not is_smartquotable(txtnode)
yield (texttype[smartquotable], txtnode.astext())
notsmartquotable = not is_smartquotable(txtnode)
yield (texttype[notsmartquotable], txtnode.astext())