aboutsummaryrefslogtreecommitdiffstats
path: root/jm2l/models.py
diff options
context:
space:
mode:
authortr4ck3ur <tr4ck3ur@style-python.fr>2015-02-14 21:44:03 +0100
committertr4ck3ur <tr4ck3ur@style-python.fr>2015-02-14 21:44:03 +0100
commite3d6c9839f41796a4870d8e9dea50ed2b657f014 (patch)
tree208a68fe017bd634f1c2a1478997a1a33aa6791c /jm2l/models.py
parenta1d2243d1707d6e780b9aca5cbaf00028ee536a8 (diff)
downloadjm2l-e3d6c9839f41796a4870d8e9dea50ed2b657f014.tar.gz
jm2l-e3d6c9839f41796a4870d8e9dea50ed2b657f014.tar.bz2
jm2l-e3d6c9839f41796a4870d8e9dea50ed2b657f014.tar.xz
jm2l-e3d6c9839f41796a4870d8e9dea50ed2b657f014.zip
remove inused print
Diffstat (limited to 'jm2l/models.py')
-rw-r--r--jm2l/models.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/jm2l/models.py b/jm2l/models.py
index f104228..cd23451 100644
--- a/jm2l/models.py
+++ b/jm2l/models.py
@@ -153,7 +153,6 @@ class User(Base):
@classmethod
def by_hash(cls, tsthash):
for u in DBSession.query(cls):
- print u.nom, u.my_hash
if u.my_hash==tsthash:
return u
return None