Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Define raw_input for Python 3
  • Loading branch information
cclauss authored Aug 22, 2017
commit 5f91a2aea9ab30dbbbeb47bdc8b8649ff4ce11d2
5 changes: 5 additions & 0 deletions sc2reader/scripts/sc2attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@

import sc2reader

try:
raw_input # Python 2
except NameError:
raw_input = input # Python 3

decisions = dict()


Expand Down