if文のミス修正、on_messageのself削除
This commit is contained in:
parent
224492568a
commit
42e36bf1c4
1 changed files with 4 additions and 5 deletions
|
@ -75,14 +75,13 @@ class DL():
|
|||
print("log ディレクトリが見つかりません... 作成します。")
|
||||
os.mkdir(self.log_dir_path)
|
||||
|
||||
if type(self.server_config["bot"]["log_channel_id"]) is not int or type(self.server_config["bot"]["config_channel_id"]) is not int:
|
||||
print("config ファイル内でチャンネルIDがint型で記述されていません。int型で記述して、起動してください。")
|
||||
self.init_result = "not_int"
|
||||
|
||||
if os.path.isfile(self.onetime_config_path):
|
||||
print("ワンタイムパスワードが見つかりました。削除します。")
|
||||
os.remove(self.onetime_config_path)
|
||||
|
||||
if type(self.server_config["bot"]["log_channel_id"]) is not int or type(self.server_config["bot"]["config_channel_id"]) is not int:
|
||||
print("config ファイル内でチャンネルIDがint型で記述されていません。int型で記述して、起動してください。")
|
||||
self.init_result = "not_int"
|
||||
else:
|
||||
self.db = psycopg2.connect(f"host={self.server_config['db']['host']} dbname={self.server_config['db']['db_name']} port={self.server_config['db']['port']} user={self.server_config['db']['username']} password={self.server_config['db']['password']}")
|
||||
cursor = self.db.cursor()
|
||||
|
@ -923,7 +922,7 @@ async def on_ready():
|
|||
await client.change_presence(activity=dislocker_activity)
|
||||
|
||||
@client.event
|
||||
async def on_message(self, message):
|
||||
async def on_message(message):
|
||||
if message.author.bot:
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in a new issue