Skip to content

Commit

Permalink
Merge pull request #5 from relaytheurgency/dev
Browse files Browse the repository at this point in the history
xrange to range for compatibility (small lists anyway)
  • Loading branch information
relaytheurgency committed May 25, 2016
2 parents 9e47c86 + 3124dc8 commit 25882fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mixtape.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def artist_mixtape(artist_search):
return artist_mixtape(search_artist(get_artist()))
else:
print("Choose which mixtape you would like to play by entering the corresponding number:\n")
for i in xrange(len(mixtapes)):
for i in range(len(mixtapes)):
print(str(i) + ". " + str(mixtapes[i]))

choice = real_raw_input("Choice (b to search again): ")
Expand Down

0 comments on commit 25882fa

Please sign in to comment.