[glib/new-gsettings] Fix choices output in simple format



commit 881261e9579304f001be67ea4e0e4a075bd8c9b2
Author: Vincent Untz <vuntz gnome org>
Date:   Fri Apr 16 22:25:31 2010 -0400

    Fix choices output in simple format

 gio/gsettings-schema-convert |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gio/gsettings-schema-convert b/gio/gsettings-schema-convert
index f3f6197..0e3c177 100755
--- a/gio/gsettings-schema-convert
+++ b/gio/gsettings-schema-convert
@@ -254,7 +254,7 @@ class GSettingsSchemaKey:
         if self.description:
             result += '%sDescription: %s\n' % (current_indent, self.description)
         if self._has_range_choices():
-            result += '%sRange: %s\n' % ', '.join(self.choices)
+            result += '%sChoices: %s\n' % ', '.join(self.choices)
         elif self._has_range_minmax():
             result += '%sRange: %s\n' % '%s..%s' % self._range_minmax
         return result



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]