summaryrefslogtreecommitdiff
path: root/store.py
diff options
context:
space:
mode:
authorRichard Jones <richard@mechanicalcat.net>2012-03-15 14:43:31 -0700
committerRichard Jones <richard@mechanicalcat.net>2012-03-15 14:43:31 -0700
commit5ff98979b90566488a0bb739bf7bc8285b3761c4 (patch)
treeaf65acb2f7b8cd06a9da5add7add7f0efbcbc5a6 /store.py
parenta15faf54fc8c12e21854b3834fb193e9194aa97e (diff)
downloaddecorator-5ff98979b90566488a0bb739bf7bc8285b3761c4.tar.gz
fix
Diffstat (limited to 'store.py')
-rw-r--r--store.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/store.py b/store.py
index b99e5dd..634010f 100644
--- a/store.py
+++ b/store.py
@@ -2245,7 +2245,7 @@ class OAuthDataStore(oauth.OAuthDataStore):
(token, secret, consumer, account, date_created, last_modified)
values (%s, %s, %s, %s, %s, %s)'''
now = datetime.datetime.now()
- safe_execute(cursor, sql, (token, secret, oauth_consumer.key, account,
+ safe_execute(cursor, sql, (token, secret, oauth_consumer.key, user,
now, now))
return oauth.OAuthToken(token, secret)