summaryrefslogtreecommitdiff
path: root/subplot/jt.py
diff options
context:
space:
mode:
Diffstat (limited to 'subplot/jt.py')
-rw-r--r--subplot/jt.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/subplot/jt.py b/subplot/jt.py
index 2c5a4fc..d8bb7fc 100644
--- a/subplot/jt.py
+++ b/subplot/jt.py
@@ -3,15 +3,15 @@ import os
def run_jt_init(ctx, dirname=None, journalname=None, title=None):
- runcmd(ctx, [_binary("jt"), "init", dirname, journalname, title])
+ runcmd_run(ctx, [_binary("jt"), "init", dirname, journalname, title])
def run_jt_list_journals(ctx):
- runcmd(ctx, [_binary("jt"), "list-journals"])
+ runcmd_run(ctx, [_binary("jt"), "list-journals"])
def run_jt_is_journal(ctx, dirname=None):
- runcmd(ctx, [_binary("jt"), "is-journal", dirname])
+ runcmd_run(ctx, [_binary("jt"), "is-journal", dirname])
def _binary(name):