Remove time.clock line in auth module. It wasn't being used.

This commit is contained in:
James Valleroy 2013-11-04 02:23:40 +00:00
parent f55ba41551
commit 978db68137

View File

@ -12,7 +12,6 @@ from passlib.hash import bcrypt
from passlib.exc import PasswordSizeError
import cfg
import random
import time
from model import User
cfg.session_key = '_cp_username'
@ -56,8 +55,6 @@ def check_credentials(username, passphrase):
"""Verifies credentials for username and passphrase.
Returns None on success or a string describing the error on failure"""
start = time.clock()
if not username or not passphrase:
error = "No username or password."
cfg.log(error)