From 5ebc626cf4be2d17bc1ca55f752ef93dfef689f0 Mon Sep 17 00:00:00 2001 From: whitequark Date: Sat, 5 May 2018 00:49:42 +0000 Subject: [PATCH] artiq_coreprofile: fix an inverted option. --- artiq/frontend/artiq_coreprofile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/frontend/artiq_coreprofile.py b/artiq/frontend/artiq_coreprofile.py index a5873c1ec..5b300e911 100755 --- a/artiq/frontend/artiq_coreprofile.py +++ b/artiq/frontend/artiq_coreprofile.py @@ -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