correction set_var
This commit is contained in:
parent
441fbd22d2
commit
f081522e1e
|
@ -7,6 +7,7 @@ from pyeole.ihm import print_line
|
|||
from pyeole.ansiprint import print_orange, print_red
|
||||
from creole.client import CreoleClient
|
||||
from collections import OrderedDict
|
||||
from zephir.backend.lib_backend import CxPool
|
||||
|
||||
|
||||
try:
|
||||
|
@ -76,7 +77,7 @@ def main():
|
|||
print('Liste des groupes :')
|
||||
for grp_id, group_infos in groups.items():
|
||||
print(' - ' + str(grp_id) + ' : ' + group_infos[0])
|
||||
print( ' - N : Créer un nouveau groupe')
|
||||
print( ' - N : Créer un nouveau groupe')
|
||||
while group_id is None:
|
||||
tmp_group_id = flushed_input("Numéro du groupe : ")
|
||||
if tmp_group_id == 'N':
|
||||
|
@ -111,7 +112,7 @@ def main():
|
|||
valvar = flushed_input("Valeur de la variable (séparateur |): ")
|
||||
ret = proxy.serveurs.set_groupe_var(liste_serveurs, varc, valvar, False)
|
||||
# on affiche les erreurs si nécessaire
|
||||
if ret[1]:
|
||||
if ret[1]:
|
||||
if ret[1] != "OK":
|
||||
print_orange('Erreur : ' + str(ret[1]))
|
||||
sys.exit(1)
|
||||
|
|
Loading…
Reference in New Issue