This is an automated email from the git hooks/post-receive script. detiste-guest pushed a commit to branch master in repository game-data-packager.
commit 50c6d39175f0b58592c846a16550522a72d1cc64 Author: Alexandre Detiste <[email protected]> Date: Sat Jul 29 12:32:29 2017 +0200 check_steam: check contents of local vfs.zip, not the global one --- tools/check_steam.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/check_steam.py b/tools/check_steam.py index f973e00..aabaede 100755 --- a/tools/check_steam.py +++ b/tools/check_steam.py @@ -25,7 +25,7 @@ response = urllib.request.urlopen(urllib.request.Request(url, headers={'User-Age native = json.loads(response.read().decode('utf8')) native = set(int(id) for id in native.keys()) -for shortname, game in load_games().items(): +for shortname, game in load_games(datadir='out').items(): for package in game.packages.values(): steam = package.steam or game.steam if not steam: -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/game-data-packager.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

