aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--brill_data.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/brill_data.py b/brill_data.py
index 043df09..df2b9ce 100644
--- a/brill_data.py
+++ b/brill_data.py
@@ -56,7 +56,7 @@ class BrillData(object):
bdctx_alloc = self._libbd.bd_context_alloc
bdctx_alloc.restype = ctypes.POINTER(self._BDContext)
self._bdctx = self._libbd.bd_context_alloc()
- for arg, value in kwargs.iteritems():
+ for arg, value in kwargs.items():
try:
self._bdctx.contents.__setattr__(arg, value)
except TypeError as e: