Skip to content

Commit

Permalink
Merge pull request elpendor#9 from GiovanH/patch-1
Browse files Browse the repository at this point in the history
Fixes a simple but major bug in which all attempts without a '-P' fail
  • Loading branch information
thadmiller committed Jun 8, 2015
2 parents 472170e + 6ace516 commit 6f6b0f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ def autoChooseBestResult(nodes,t):

def getPlatformNames(_platforms):
platforms = []
for (i, platform) in enumerate(_platforms.split(',')):
for (i, platform) in enumerate(ES_systems)):
if gamesdb_platforms.get(platform, None) is not None: platforms.append(gamesdb_platforms[platform])
return platforms

Expand Down

0 comments on commit 6f6b0f1

Please sign in to comment.