From 9c5d74914830f34752686bfcbe1f708ba4d1ac61 Mon Sep 17 00:00:00 2001 From: Rene Lopez Date: Wed, 2 Jun 2010 19:27:10 -0500 Subject: [PATCH] Fix bug that made user selected per feed stability not work --- zeroinstall/0launch-gui/properties.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zeroinstall/0launch-gui/properties.py b/zeroinstall/0launch-gui/properties.py index 6441e95..828931a 100644 --- a/zeroinstall/0launch-gui/properties.py +++ b/zeroinstall/0launch-gui/properties.py @@ -286,7 +286,7 @@ class Properties: if i == 0: new_stability = None else: - name = stability.get_model()[i][0].lower() + name = ['stable', 'testing', 'developer'][i-1] new_stability = stability_levels[name] interface.set_stability_policy(new_stability) writer.save_interface(interface) -- 2.11.4.GIT