Skip to content

Commit b71b459

Browse files
author
Thinh Nguyen
authored
remove space escaping character
1 parent 0c77826 commit b71b459

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

element_array_ephys/readers/kilosort_triggering.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,8 +395,8 @@ def run_modules(self):
395395
module_output_json = self._get_module_output_json_filename(module)
396396
command = [sys.executable,
397397
'-W', 'ignore', '-m', 'ecephys_spike_sorting.modules.' + module,
398-
'--input_json', module_input_json.replace(' ', '\ '),
399-
'--output_json', module_output_json.replace(' ', '\ ')]
398+
'--input_json', module_input_json,
399+
'--output_json', module_output_json]
400400

401401
start_time = datetime.utcnow()
402402
self._update_module_status(

0 commit comments

Comments
 (0)