summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2014-11-23 10:57:40 +0200
committerLars Wirzenius <liw@liw.fi>2014-11-23 10:57:40 +0200
commit4aa83d9b39d7c1facd7d021afef38c659e7c99c0 (patch)
treec1a204ed232090f3c424b0c6834da93665e2dba1
parent92fe97531bfb8830f77bafa27c29ab89b564e973 (diff)
downloadjt-4aa83d9b39d7c1facd7d021afef38c659e7c99c0.tar.gz
Fix method names in calls
-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')