Fix `.eval`

pull/1/head
hikariatama 2022-08-21 15:05:46 +00:00
parent b179c54f96
commit 33c3d3b72b
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@
- Fix translation flaw in `HikkaSecurity`
- Fix `.uninstall_hikka` being accessible by sudo
- Fix `utils.find_caller` for :method:`hikka.inline.utils.Utils._find_caller_sec_map`
- Fix `.eval`
- Add more animated emojis to modules
- Add targeted security for users and chats (`.tsec`)
- Add support for `tg_level` in `.config Tester`

View File

@ -66,7 +66,7 @@ class PythonMod(loader.Module):
@loader.command(ru_doc="Алиас для команды .e")
async def eval(self, message: Message):
"""Alias for .e command"""
await self.ecmd(message)
await self.e(message)
@loader.owner
@loader.command(ru_doc="Выполняет Python код")