Skip to content

Commit

Permalink
Fix bug in paypal ipn. Closes fgaudin#228.
Browse files Browse the repository at this point in the history
  • Loading branch information
fgaudin committed May 26, 2011
1 parent b009b77 commit cb8befe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ def paypal_ipn(request):
begin_date = last_subscription.expiration_date

proposal = Proposal.objects.create(project=project,
reference='subscription-%i%i%i' % (subscription.expiration_date.year,
reference='subscription%i%i%i' % (subscription.expiration_date.year,
subscription.expiration_date.month,
subscription.expiration_date.day),
state=PROPOSAL_STATE_BALANCED,
Expand Down

0 comments on commit cb8befe

Please sign in to comment.