Skip to content

Commit 26e2b67

Browse files
committed
fix for #441
1 parent d537f9c commit 26e2b67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/canmatrix/formats/json.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def dump(db, f, **options):
3939

4040
export_canard = options.get('jsonCanard', False)
4141
motorola_bit_format = options.get('jsonMotorolaBitFormat', "lsb")
42-
export_all = options.get('jsonAll', False)
42+
export_all = options.get('jsonExportAll', False)
4343
native_types = options.get('jsonNativeTypes', False)
4444
number_converter = float if native_types else str
4545
additional_frame_columns = [x for x in options.get("additionalFrameAttributes", "").split(",") if x]

0 commit comments

Comments
 (0)