remove a forgotten print statement

This commit is contained in:
MasterofJOKers 2012-06-16 19:03:15 +02:00
parent edc81ca1e1
commit 17d3b37e64
1 changed files with 0 additions and 1 deletions

View File

@ -86,7 +86,6 @@ class VirtualTransaction(models.Model):
@staticmethod
def moveMoney(fromUser, toUser, amount, commit=True):
print fromUser, toUser, fromUser == toUser, fromUser.id, toUser.id
if not (fromUser == toUser):
fromProfile = fromUser.get_profile()
toProfile = toUser.get_profile()