diff options
| author | 2021-02-01 05:31:48 +0530 | |
|---|---|---|
| committer | 2021-02-01 05:31:48 +0530 | |
| commit | 8a92054bab4c3dbd0e42d633d11a87461e1189e1 (patch) | |
| tree | 5724d0f5ee1a796d254a299c5fd7838e7afad510 | |
| parent | Add mod_meta and mod_tools channels to whitelisted (diff) | |
Remove brackets from .join
| -rw-r--r-- | bot/exts/evergreen/issues.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/issues.py b/bot/exts/evergreen/issues.py index f24e0717..72ca6de4 100644 --- a/bot/exts/evergreen/issues.py +++ b/bot/exts/evergreen/issues.py @@ -189,7 +189,7 @@ class Issues(commands.Cog):          if message_repo_issue_map:              for repo_issue in message_repo_issue_map: -                if not self.check_in_block(message, " ".join([*repo_issue])): +                if not self.check_in_block(message, " ".join(repo_issue)):                      result = await self.fetch_issues({repo_issue[1]}, repo_issue[0], "python-discord")                      if isinstance(result, list):                          links.extend(result)  |