Skip to content

Commit

Permalink
Fix python3 compatibility.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 199794003
  • Loading branch information
tewalds committed Jun 8, 2018
1 parent 87d2df3 commit 1dde168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysc2/lib/point_flag.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def parse(self, argument):
args = [argument]
elif isinstance(argument, (list, tuple)):
args = argument
elif isinstance(argument, (str, unicode)):
elif isinstance(argument, str):
args = argument.split(",")
else:
raise ValueError(
Expand Down

0 comments on commit 1dde168

Please sign in to comment.