diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-08-17 17:02:48 +0200 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-11-15 00:01:23 +0100 |
commit | b093cc6a35c884b926e0c2bc5928b330cccd4e03 (patch) | |
tree | cb58e88dffa693a505b4b3f54d18f0714350a973 /factory/base.py | |
parent | 9db320ba65d91ff8c09169b359ded4bfff5196db (diff) | |
download | factory-boy-b093cc6a35c884b926e0c2bc5928b330cccd4e03.tar factory-boy-b093cc6a35c884b926e0c2bc5928b330cccd4e03.tar.gz |
[py3] Remove calls to iteritems().
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
Diffstat (limited to 'factory/base.py')
-rw-r--r-- | factory/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/factory/base.py b/factory/base.py index a3d91b0..240170c 100644 --- a/factory/base.py +++ b/factory/base.py @@ -396,7 +396,7 @@ class BaseFactory(object): factory's declarations or in the extra kwargs. """ stub_object = containers.StubObject() - for name, value in cls.attributes(create=False, extra=kwargs).iteritems(): + for name, value in cls.attributes(create=False, extra=kwargs).items(): setattr(stub_object, name, value) return stub_object |