Skip to content

Commit b779d10

Browse files
committed
Fix keep-raw flag logic in post_process
1 parent ab41dfb commit b779d10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blech_post_process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135

136136

137137
# Delete the raw node, if it exists in the hdf5 file, to cut down on file size
138-
if args.keep_raw == 'False':
138+
if args.keep_raw == False:
139139
repacked_bool = post_utils.delete_raw_recordings(hdf5_name)
140140
else:
141141
repacked_bool = False

0 commit comments

Comments
 (0)