1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00

Fix "module has no attribute 'logger'"

This commit is contained in:
pieter 2015-09-08 18:53:36 +02:00
parent cc7ab58ed8
commit 9f04f0ece2

View File

@ -4,12 +4,13 @@ from __future__ import print_function
import threading
import time
import re
from telebot import apihelper, types, util
import logging
logging.basicConfig()
logger = logging.getLogger('Telebot')
from telebot import apihelper, types, util
"""
Module : telebot
"""