diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2024-11-17 17:15:55 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2024-11-17 17:22:56 +1300 |
commit | b377b9839690c604d56571f4c6424e11078090e2 (patch) | |
tree | 5c731b1e351fdd4509f060d08adcae4454f9fa84 | |
parent | Put terminal emulator into a constant (diff) | |
download | vixf-b377b9839690c604d56571f4c6424e11078090e2.tar.gz vixf-b377b9839690c604d56571f4c6424e11078090e2.zip |
Reformat command for clarity
-rw-r--r-- | vixf.py3 | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -61,12 +61,9 @@ with tempfile.NamedTemporaryFile(mode='w', delete_on_close=False) as tf: editor = EDITOR command = [ - TERM, - '-name', - SELF, - '-e', - editor, - tf.name, + TERM, + '-name', SELF, + '-e', editor, tf.name, ] subprocess.run(command, check=True) |