mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-12 00:30:11 +00:00
System/member set command rework, should be more user friendly now
This commit is contained in:
parent
8e504fa879
commit
10746ae807
8 changed files with 183 additions and 119 deletions
|
|
@ -67,4 +67,8 @@ class MemberNameTooLongError(PluralKitError):
|
|||
|
||||
class InvalidColorError(PluralKitError):
|
||||
def __init__(self):
|
||||
super().__init__("Color must be a valid hex color. (eg. #ff0000)")
|
||||
super().__init__("Color must be a valid hex color. (eg. #ff0000)")
|
||||
|
||||
class InvalidDateStringError(PluralKitError):
|
||||
def __init__(self):
|
||||
super().__init__("Invalid date string. Date must be in ISO-8601 format (YYYY-MM-DD, eg. 1999-07-25).")
|
||||
Loading…
Add table
Add a link
Reference in a new issue