mirror of https://github.com/mahmoud/boltons.git
minor rephrasing (not is -> is not)
This commit is contained in:
parent
5b78fecfb9
commit
ae211bfb4e
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue