Add missing items call on some dict iteration.

remotes/origin/enhancement/email-actions
Andrey Antukh 2013-10-31 10:56:35 +01:00
parent 78328ce1c9
commit ec5002f8ed
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ class Milestone(WatchedMixin):
def _dict_sum(self, dict1, dict2):
dict_result = copy.copy(dict2)
for key, value in dict1:
for key, value in dict1.items():
if key in dict_result:
dict_result[key] += value
else: