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 384624f157d660bb8e7e3ee27388515f3ae2fb62 Author: Alexandre Detiste <[email protected]> Date: Sat Jul 4 09:35:57 2015 +0200 steam id is allways an int --- data/duke3d.yaml | 2 +- data/freespace2.yaml | 2 +- game_data_packager/make_template.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data/duke3d.yaml b/data/duke3d.yaml index b35e77f..19200ca 100644 --- a/data/duke3d.yaml +++ b/data/duke3d.yaml @@ -27,7 +27,7 @@ packages: duke3d-data: install_to: usr/share/games/eduke32 steam: - id: '225140' + id: 225140 path: common/Duke Nukem 3D/gameroot/classic gog: url: duke_nukem_3d_atomic_edition diff --git a/data/freespace2.yaml b/data/freespace2.yaml index c5572bd..a37fe64 100644 --- a/data/freespace2.yaml +++ b/data/freespace2.yaml @@ -22,7 +22,7 @@ packages: freespace2-data: install_to: usr/share/games/freespace2-open steam: - id: '273620' + id: 273620 path: common/Freespace 2 gog: url: freespace_2 diff --git a/game_data_packager/make_template.py b/game_data_packager/make_template.py index f85d142..dd647db 100644 --- a/game_data_packager/make_template.py +++ b/game_data_packager/make_template.py @@ -147,7 +147,7 @@ class GameData(object): steam_id = acf['appid'] self.longname = game = acf['name'] break - steam_dict['id'] = steam_id + steam_dict['id'] = int(steam_id) steam_dict['path'] = destdir[steam+11:] game = game.replace(' ','').replace(':','').replace('-','').lower() -- 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

