1
0

move help.md into src/

This commit is contained in:
2018-09-16 12:58:53 +01:00
parent 54e7af68f5
commit 0b507b3cd3
2 changed files with 2 additions and 32 deletions

View File

@@ -14,7 +14,7 @@ from fuzzywuzzy import process
from fuzzywuzzy import fuzz
from pydo import Task
VERSION = "v1.1"
VERSION = "v1.1.1"
PROPERTY_LAST_COMMAND = "last_command"
@@ -388,7 +388,7 @@ def user_help_info(chat_id):
with open('help.md') as help_file:
text = help_file.read()
text += "\ntodo.txt bot for Telegram version {0}".format(VERSION)
text += "\n[View help on GitHub](alvierahman90.github.io/todo.txt_telegram/help.html)"
text += "\n[View help on GitHub](alvierahman90.github.io/todo.txt_telegram/src/help.html)"
BOT.sendMessage(chat_id, text, parse_mode='Markdown')