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 59ca31b3a42cf65bed7f764ccbb18608f9859a41 Author: Alexandre Detiste <[email protected]> Date: Tue Mar 21 21:13:21 2017 +0100 SuSE/Fedora: make --help less weird --- game_data_packager/command_line.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/game_data_packager/command_line.py b/game_data_packager/command_line.py index 1309aa7..9dfa649 100644 --- a/game_data_packager/command_line.py +++ b/game_data_packager/command_line.py @@ -126,14 +126,14 @@ def run_command_line(): dest='install', help='do not install the generated package (requires -d, default)') base_parser.add_argument('-d', '--destination', metavar='OUTDIR', - help='write the generated .deb(s) to OUTDIR') + help='write the generated .%s(s) to OUTDIR' % FORMAT) group = base_parser.add_mutually_exclusive_group() group.add_argument('-z', '--compress', action='store_true', - help='compress generated .deb (default if -d is used)') + help='compress generated .%s (default if -d is used)' % FORMAT) group.add_argument('--no-compress', action='store_false', dest='compress', - help='do not compress generated .deb (default without -d)') + help='do not compress generated .%s (default without -d)' % FORMAT) group = base_parser.add_mutually_exclusive_group() group.add_argument('--download', action='store_true', -- 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

