This is an automated email from the git hooks/post-receive script. smcv pushed a commit to branch master in repository game-data-packager.
commit df197e755fde27b89acc6431a05c6c8bbfc8ae00 Author: Simon McVittie <[email protected]> Date: Tue Dec 26 16:53:39 2017 +0000 WantedFile: Output fewer redundant fields in to_data(expand=False) Signed-off-by: Simon McVittie <[email protected]> --- game_data_packager/data.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/game_data_packager/data.py b/game_data_packager/data.py index 504686d..968cdd2 100644 --- a/game_data_packager/data.py +++ b/game_data_packager/data.py @@ -286,7 +286,6 @@ class WantedFile(HashedFile): for k in ( 'download', - 'install_as', 'size', 'unsuitable', 'unpack', @@ -298,6 +297,9 @@ class WantedFile(HashedFile): else: ret[k] = v + if self.install_as != self.filename: + ret['install_as'] = self.install_as + for k in ( 'distinctive_name', 'install_to', -- 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

