minor rephrasing (not is -> is not)

This commit is contained in:
Mahmoud Hashemi 2015-06-18 02:29:48 -07:00
parent 5b78fecfb9
commit ae211bfb4e
1 changed files with 1 additions and 1 deletions

View File

@ -579,7 +579,7 @@ class FastIterOrderedMultiDict(OrderedMultiDict):
else:
# if the previous was skipped, go back to the cell that
# skipped it
sprev = last[SPREV] if not (last[SPREV][SNEXT] is last) else last
sprev = last[SPREV] if (last[SPREV][SNEXT] is not last) else last
cell = [last, root,
k, v,
sprev, root]