[flatboob] display backend in city choice
we need to know this because of a restriction on the number of cities in some backends.
This commit is contained in:
parent
0d148b9e47
commit
0657800eca
1 changed files with 1 additions and 1 deletions
|
|
@ -132,7 +132,7 @@ class Flatboob(ReplApplication):
|
|||
r = 'notempty'
|
||||
while r != '':
|
||||
for i, city in enumerate(cities):
|
||||
print(' %s%2d)%s [%s] %s' % (self.BOLD, i+1, self.NC, 'x' if city in query.cities else ' ', city.name))
|
||||
print(' %s%2d)%s [%s] %s (%s)' % (self.BOLD, i+1, self.NC, 'x' if city in query.cities else ' ', city.name, city.backend))
|
||||
r = self.ask(' Select cities (or empty to stop)', regexp='(\d+|)', default='')
|
||||
if not r.isdigit():
|
||||
continue
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue