Skip to content

Commit

Permalink
Fixed invalid settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Sureiya committed Nov 11, 2013
1 parent bbc19d8 commit c80e3cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class Meta:

def initialize(self, request):
""" If notification is being added from an actual Post this will set sender IP and store query if neccesary """
if CLICKBANK_DEBUG or CLICKBANK_STORE_POSTS:
if settings.CLICKBANK_DEBUG or settings.CLICKBANK_STORE_POSTS:
post = Post(post_data=request.POST, get_data=request.GET)
post.save()
self.post_data = post
Expand Down

0 comments on commit c80e3cd

Please sign in to comment.