1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Fix royalpackversion.py not printing the version

This commit is contained in:
Steffo 2020-07-31 16:11:08 +02:00
parent 64f517ea62
commit 0d1757f4c8

View file

@ -1,5 +1,6 @@
from typing import * from typing import *
import functools
import pkg_resources import pkg_resources
import royalnet.commands as rc import royalnet.commands as rc
@ -12,14 +13,16 @@ class RoyalpackCommand(rc.Command):
syntax: str = "" syntax: str = ""
@property @property
def royalpack_version(self): @functools.lru_cache(1)
def royalpack_version(self) -> str:
return pkg_resources.get_distribution("royalpack").version return pkg_resources.get_distribution("royalpack").version
async def run(self, args: rc.CommandArgs, data: rc.CommandData) -> None: async def run(self, args: rc.CommandArgs, data: rc.CommandData) -> None:
# noinspection PyUnreachableCode
if __debug__: if __debug__:
message = f" Royalpack [url=https://github.com/Steffo99/royalpack/]Unreleased[/url]\n" message = f" Royalpack [url=https://github.com/Steffo99/royalpack/]Unreleased[/url]\n"
else: else:
message = f" Royalpack [url=https://github.com/Steffo99/royalpack/releases/tag/{self.royalpack_version}]{self.royalpack_version}[/url]\n" message = f" Royalpack [url=https://github.com/Steffo99/royalpack/releases/tag/{self.royalpack_version}]{self.royalpack_version}[/url]\n"
if "69" in semantic: if "69" in self.royalpack_version:
message += "(Nice.)" message += "(Nice.)"
await data.reply(message) await data.reply(message)