diff options
author | Vincent Untz <vuntz@gnome.org> | 2010-07-07 16:30:33 +0200 |
---|---|---|
committer | Vincent Untz <vuntz@gnome.org> | 2010-07-07 16:30:33 +0200 |
commit | 082d26d93c473a96cbf314b4a7259c625c5778f4 (patch) | |
tree | b2e79af8cea334f3fdca5783d721bf5db81bff3e | |
parent | 4b069e2e109c9ac4e5c7b39da7fd3c10ea9544e8 (diff) | |
download | gconf-082d26d93c473a96cbf314b4a7259c625c5778f4.tar.gz |
[gsettings] Fix error in gsettings-schema-convert --help
The simple format can always be chosen.
-rwxr-xr-x | gsettings/gsettings-schema-convert | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gsettings/gsettings-schema-convert b/gsettings/gsettings-schema-convert index 5bdd5009..30df1b97 100755 --- a/gsettings/gsettings-schema-convert +++ b/gsettings/gsettings-schema-convert @@ -1046,7 +1046,7 @@ def main(args): parser.add_option("-u", "--keep-underscores", action="store_true", dest="keep_underscores", help="keep underscores in key names instead of replacing them with dashes when converting gconf schema file") parser.add_option("-s", "--simple", action="store_true", dest="simple", - default=False, help="use the simple schema format as output (only for gconf schema conversion)") + default=False, help="use the simple schema format as output") parser.add_option("-x", "--xml", action="store_true", dest="xml", default=False, help="use the xml schema format as output") parser.add_option("-f", "--force", action="store_true", dest="force", |