From 956408036888447f6b6c3d8042517f7ec8e2e3d9 Mon Sep 17 00:00:00 2001 From: Christoph Korn Date: Sat, 9 Feb 2013 22:09:37 +0100 Subject: [PATCH] sandboxgamemaker.py: Change the download URL 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. --- sandboxgamemaker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sandboxgamemaker.py b/sandboxgamemaker.py index eee8405..b07c441 100644 --- a/sandboxgamemaker.py +++ b/sandboxgamemaker.py @@ -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[\d\.]+)") m=f.finditer(h) for x in m: