Skip to content

Commit

Permalink
Remove transitory variable
Browse files Browse the repository at this point in the history
  • Loading branch information
mrhmouse committed Jan 13, 2014
1 parent 84e2d67 commit e9a77df
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/raptors.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@
""")
def inpt(prompt):
try: # Just another sign that python 3 sucks. Deal.
c = raw_input(prompt)
return raw_input(prompt)
except:
c = input(prompt)
return c
return input(prompt)

# https://github.com/blog/699-making-github-more-open-git-backed-wikis
if os.path.exists(os.path.expandvars("$RED_SPIDER_ROOT") + "/config/raptors"):
Expand Down

0 comments on commit e9a77df

Please sign in to comment.