From 4aa83d9b39d7c1facd7d021afef38c659e7c99c0 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 23 Nov 2014 10:57:40 +0200 Subject: Fix method names in calls --- jt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jt b/jt index 48bbaf6..dae3441 100755 --- a/jt +++ b/jt @@ -202,11 +202,11 @@ class FinishCommand(Command): if self._app.settings['git']: if os.path.exists(pub_attch): - self.commit_to_git([pub_mdwn, pub_attch]) + self._commit_to_git([pub_mdwn, pub_attch]) else: - self.commit_to_git([pub_mdwn]) + self._commit_to_git([pub_mdwn]) if self._app.settings['push']: - self.push_git() + self._push_git() def _published_dir(self): subdir = time.strftime('notes/%Y/%m/%d') -- cgit v1.2.1