fix: added check if token is none in export method
This commit is contained in:
parent
97c6bcfa2b
commit
10e2ac1d83
1 changed files with 2 additions and 0 deletions
|
@ -19,6 +19,8 @@ class ExportChannels(commands.Cog):
|
|||
|
||||
async def export(self, channels: list):
|
||||
token = await self.config.bot_token()
|
||||
if token is None:
|
||||
raise(self.ConfigException, "Bot token not set!")
|
||||
self.data_path = data_manager.cog_data_path(self)
|
||||
self.bundled_data_path = data_manager.bundled_data_path(self)
|
||||
out = f'{self.data_path}{os.sep}Exported Channels'
|
||||
|
|
Loading…
Reference in a new issue