mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-30 06:49:24 +01:00
Fix error when printing the 'NoSuitableDatabase' error.
This commit is contained in:
parent
f6419525ee
commit
14180a24ec
@ -43,7 +43,7 @@ from ..commands import *
|
|||||||
|
|
||||||
class NoSuitableDatabase(Exception):
|
class NoSuitableDatabase(Exception):
|
||||||
def __init__(self, suitable):
|
def __init__(self, suitable):
|
||||||
self.suitable = suitable
|
self.suitable = list(suitable)
|
||||||
self.suitable.sort()
|
self.suitable.sort()
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user