main: Rename load_update_incomplete_tasks to update_from_tw

This commit is contained in:
Tomas Babej 2014-12-29 10:44:17 +01:00
parent cd05f83b49
commit bbf6aa390a

View file

@ -176,7 +176,7 @@ class VimwikiTask(object):
return task return task
def load_update_incomplete_tasks(): def update_from_tw():
""" """
Updates all the incomplete tasks in the vimwiki file if the info from TW is different. Updates all the incomplete tasks in the vimwiki file if the info from TW is different.
""" """
@ -195,5 +195,5 @@ def load_update_incomplete_tasks():
vim.command('echom "lines: %d"' % number_of_lines) vim.command('echom "lines: %d"' % number_of_lines)
if __name__ == '__main__': if __name__ == '__main__':
load_update_incomplete_tasks() update_from_tw()