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:
authordiSabler <dissy@ya.ru>2017-08-04 14:37:13 +0300
committerdiSabler <dissy@ya.ru>2017-08-04 14:37:13 +0300
commitafcc1c03b03f3680238a681104c68d6576bd9766 (patch)
tree2d7328e0e2aa1dd2998e61d313ed1e01c6a2051f
parent6cb222b766466e38994b16777ebf97f70b3f89da (diff)
fix: symlinks for chat id in logs #3
-rw-r--r--plugins/logger.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/logger.py b/plugins/logger.py
index d58ad54..d671463 100644
--- a/plugins/logger.py
+++ b/plugins/logger.py
@@ -180,7 +180,7 @@ def logger(raw_in):
if SYMLINK:
CT = CHAT_TITLE
if CHAT_NAME:
- CT += ' - %s' CHAT_NAME
+ CT += ' - %s' % CHAT_NAME
if CT and not os.path.exists(LOG_FOLDER % CT):
try:
os.symlink(chat_id, LOG_FOLDER % CT)