aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/COW.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bb/COW.py')
-rw-r--r--lib/bb/COW.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/COW.py b/lib/bb/COW.py
index bec620809..7817473ab 100644
--- a/lib/bb/COW.py
+++ b/lib/bb/COW.py
@@ -150,7 +150,7 @@ class COWDictMeta(COWMeta):
yield value
if type == "items":
yield (key, value)
- raise StopIteration()
+ return
def iterkeys(cls):
return cls.iter("keys")