Skip to content

Commit

Permalink
sandboxgamemaker.py: Change the download URL
Browse files Browse the repository at this point in the history
The website changed the URL of the download page.
Unfortunately, we still have to parse the text to
guess the upstream version. The download links itself
just contain increasing numbers.
  • Loading branch information
Christoph Korn committed Feb 9, 2013
1 parent 4751919 commit 9564080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sandboxgamemaker.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/python
import urllib2
import re
h=urllib2.urlopen("http://www.sandboxgamemaker.com/free-game-maker-downloads").read()
h=urllib2.urlopen("http://www.sandboxgamemaker.com/free-game-maker-download/").read()
f=re.compile("Platinum Arts Sandbox Free 3D Game Maker (?P<version>[\d\.]+)")
m=f.finditer(h)
for x in m:
Expand Down

0 comments on commit 9564080

Please sign in to comment.