From ae211bfb4eab1dd50730d364bbc871566e2d92e1 Mon Sep 17 00:00:00 2001 From: Mahmoud Hashemi Date: Thu, 18 Jun 2015 02:29:48 -0700 Subject: [PATCH] minor rephrasing (not is -> is not) --- boltons/dictutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boltons/dictutils.py b/boltons/dictutils.py index 9d9115e..619a491 100644 --- a/boltons/dictutils.py +++ b/boltons/dictutils.py @@ -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]