Skip to content

Commit

Permalink
Merge pull request #1754 from akvo/#1749-iati-check-bugs
Browse files Browse the repository at this point in the history
[Fixes #1749] IATI check bug
  • Loading branch information
zzgvh committed Aug 26, 2015
2 parents 4d1f064 + 07c86e1 commit 4706e73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion akvo/iati/checks/v201.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ def planned_disbursements(self):
checks = []

for pd in self.project.planned_disbursements.all():
if not pd.amount:
if not pd.value:
checks.append((u'error', u'planned disbursement (id: %s) has '
u'no amount' % str(pd.pk)))
if not pd.period_start:
Expand Down

0 comments on commit 4706e73

Please sign in to comment.