Skip to content

Commit

Permalink
Fix the shell. Broken since the Python 3 move. I guess nobody uses it…
Browse files Browse the repository at this point in the history
…. :(
  • Loading branch information
sixohsix committed May 10, 2012
1 parent 95152c2 commit 77001ea
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions twitter/cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@

from __future__ import print_function

try:
input = __builtins__['raw_input']
except AttributeError:
pass


CONSUMER_KEY='uS6hO2sV6tDKIOeVjhnFnQ'
CONSUMER_SECRET='MEYTOS97VvlHX7K1rwHPEqVpTSqZ71HtvoK4sVuYk'

Expand Down

0 comments on commit 77001ea

Please sign in to comment.