artiq_coreprofile: fix an inverted option.

pull/1017/head
whitequark 2018-05-05 00:49:42 +00:00
parent b1d349cc1b
commit 5ebc626cf4
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ def get_argparser():
help="file to save profile to, in Callgrind format")
p_save.add_argument("firmware", metavar="FIRMWARE", type=str,
help="path to firmware ELF file")
p_save.add_argument("--no-compression", default=True, action='store_false',
p_save.add_argument("--no-compression", default=False, action='store_true',
help="disable profile compression")
return parser