1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-03-11 00:58:39 +03:00

Fixed defvalue from 4 to 3 for ovirt, so migrations works fine from 1.9 to 2.x

This commit is contained in:
Adolfo Gómez García 2016-09-11 23:02:57 +02:00
parent f924604217
commit 5e848cbc8c

View File

@ -103,7 +103,7 @@ class Provider(ServiceProvider):
gui.choiceItem('3', '3.x'),
gui.choiceItem('4', '4.x'),
],
defvalue='4' # Default value is the ID of the choicefield
defvalue='3' # Default value is the ID of the choicefield
)
host = gui.TextField(length=64, label=_('Host'), order=2, tooltip=_('oVirt Server IP or Hostname'), required=True)