diff options
author | Peter Foley <pefoley2@pefoley.com> | 2014-09-25 15:28:44 -0400 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-09-26 11:57:56 +0000 |
commit | 0014648fee6c2b499cbd20682b7f27cdc78e1123 (patch) | |
tree | 90b9957fb396855d10262255e6adc63581275117 /bin | |
parent | fee691380bf6a6335c274b13865b9a7f71581331 (diff) |
improve gbuild-to-ide error message
Change-Id: Ia8986764e48f1dbe39374d511a188bd2b5f49e13
Reviewed-on: https://gerrit.libreoffice.org/11654
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/gbuild-to-ide | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide index bdb8688a6cfa..c63ba59d4668 100755 --- a/bin/gbuild-to-ide +++ b/bin/gbuild-to-ide @@ -889,7 +889,7 @@ if __name__ == '__main__': 'debug': DebugIntegrationGenerator} if args.ide not in generators.keys(): - parser.print_help() + print("Invalid ide. valid values are %s" % ','.join(generators.keys())) sys.exit(1) if args.input: |