Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/isida/vi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/logger.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/logger.py b/plugins/logger.py
index 3e01ee1..3661b5b 100644
--- a/plugins/logger.py
+++ b/plugins/logger.py
@@ -64,7 +64,7 @@ if not os.path.exists(LOG_FOLDER % ''):
def cmd_log(raw_in, text):
if LOG_URL:
chat_id = raw_in['message'].get('chat', {}).get('id', '')
- msg = 'Logs are <a href="%s/%s">here</a>!' % (LOG_URL, chat_id)
+ msg = 'Logs are <a href="%s/%s/">here</a>!' % (LOG_URL, chat_id)
else:
msg = 'Logs not configured!'
send_msg(raw_in, msg, custom={'disable_web_page_preview': 'true'})