sort backends by name when querying user to select one
This commit is contained in:
parent
8343637b4b
commit
ddda7f88e4
1 changed files with 1 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ __all__ = ['ConsoleApplication', 'BackendNotGiven']
|
||||||
class BackendNotGiven(Exception):
|
class BackendNotGiven(Exception):
|
||||||
def __init__(self, id, backends):
|
def __init__(self, id, backends):
|
||||||
self.id = id
|
self.id = id
|
||||||
self.backends = backends
|
self.backends = sorted(backends)
|
||||||
Exception.__init__(self, 'Please specify a backend to use for this argument (%s@backend_name). '
|
Exception.__init__(self, 'Please specify a backend to use for this argument (%s@backend_name). '
|
||||||
'Availables: %s.' % (id, ', '.join(name for name, backend in backends)))
|
'Availables: %s.' % (id, ', '.join(name for name, backend in backends)))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue