summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xjt6
1 files 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')