remove a forgotten print statement
This commit is contained in:
parent
edc81ca1e1
commit
17d3b37e64
|
@ -86,7 +86,6 @@ class VirtualTransaction(models.Model):
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def moveMoney(fromUser, toUser, amount, commit=True):
|
def moveMoney(fromUser, toUser, amount, commit=True):
|
||||||
print fromUser, toUser, fromUser == toUser, fromUser.id, toUser.id
|
|
||||||
if not (fromUser == toUser):
|
if not (fromUser == toUser):
|
||||||
fromProfile = fromUser.get_profile()
|
fromProfile = fromUser.get_profile()
|
||||||
toProfile = toUser.get_profile()
|
toProfile = toUser.get_profile()
|
||||||
|
|
Loading…
Reference in New Issue