summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xjt4
1 files changed, 2 insertions, 2 deletions
diff --git a/jt b/jt
index 65e31f5..b2c9a25 100755
--- a/jt
+++ b/jt
@@ -80,8 +80,8 @@ class NewCommand(Command):
class ListCommand(Command):
def run(self, args):
- for draft_id, filename in self.find_drafts():
- print draft_id, self.get_draft_title(filename) or ""
+ for draft_id, filename in self._app.find_drafts():
+ print draft_id, self._app.get_draft_title(filename) or ""
class JournalTool(cliapp.Application):