Private
Public Access
1
0

fixing print statement

This commit is contained in:
Sander Roosendaal
2019-01-04 08:51:54 +01:00
parent 8e14c40d80
commit 4b2eecbb6b

View File

@@ -30,7 +30,10 @@ def setrowerplans():
r.paidplan = paidplans[0]
r.save()
else:
print 'Could not set plan for ',r
try:
print 'Could not set plan for ',r.user.username
except:
pass
def is_existing_customer(rower):
if rower.country is not None and rower.customer_id is not None and rower.country != '':