Queer European MD passionate about IT
Davte 3 years ago
parent
commit
293a831958
3 changed files with 4 additions and 4 deletions
  1. 1 1
      davtelepot/__init__.py
  2. 1 1
      davtelepot/administration_tools.py
  3. 2 2
      davtelepot/messages.py

+ 1 - 1
davtelepot/__init__.py

@@ -11,7 +11,7 @@ __author__ = "Davide Testa"
 __email__ = "davide@davte.it"
 __credits__ = ["Marco Origlia", "Nick Lee @Nickoala"]
 __license__ = "GNU General Public License v3.0"
-__version__ = "2.6.3"
+__version__ = "2.6.4"
 __maintainer__ = "Davide Testa"
 __contact__ = "t.me/davte"
 

+ 1 - 1
davtelepot/administration_tools.py

@@ -1840,7 +1840,7 @@ def init(telegram_bot: Bot,
         )
     if 'talking_sessions' not in db.tables:
         table = db.create_table(
-            table_name='users'
+            table_name='talking_sessions'
         )
         table.create_column(
             'user',

+ 2 - 2
davtelepot/messages.py

@@ -75,12 +75,12 @@ default_admin_messages = {
         },
         'no_log': {
             'en': "Sorry but no errors log file is set.\n"
-                  "To set it, use `bot.set_errors_file_name` instance method"
+                  "To set it, use `bot.set_errors_file_name` instance method "
                   "or `Bot.set_class_errors_file_name` class method.",
             'it': "Spiacente ma il file di log degli errori non è stato "
                   "impostato.\n"
                   "Per impostarlo, usa il metodo d'istanza "
-                  "`bot.set_errors_file_name` o il metodo di classe"
+                  "`bot.set_errors_file_name` o il metodo di classe "
                   "`Bot.set_class_errors_file_name`."
         },
         'empty_log': {