Skip to content

Commit

Permalink
Merge pull request #114 from Aayush-Kasurde/issue-107
Browse files Browse the repository at this point in the history
Converted Google project name to lower case using lower()
  • Loading branch information
pypingou committed Mar 18, 2015
2 parents e6121b0 + 3696263 commit a096751
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion anitya/lib/backends/google.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def get_versions(cls, project):
'''
url = 'http://code.google.com/p/%(name)s/downloads/list'\
'?sort=releasedate' % {'name': project.name}
'?sort=releasedate' % {'name': project.name.lower()}

regex = REGEX % {'name': project.name}

Expand Down

0 comments on commit a096751

Please sign in to comment.