summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJohan Dahlin <johan@src.gnome.org>2007-11-06 08:54:35 +0000
committerJohan Dahlin <johan@src.gnome.org>2007-11-06 08:54:35 +0000
commit1b8078ba1c1c027a8c7f3b0e1a32dd03c6e26857 (patch)
treeb09586f50ea5e610a9e8811a3375127784679c05 /examples
parent3ef20240775f38fa40cdac5eca010b6d46bc673b (diff)
downloadpygobject-1b8078ba1c1c027a8c7f3b0e1a32dd03c6e26857.tar.gz
remove trailing whitespace
svn path=/trunk/; revision=716
Diffstat (limited to 'examples')
-rw-r--r--examples/option.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/option.py b/examples/option.py
index d4ff8760..345517e6 100644
--- a/examples/option.py
+++ b/examples/option.py
@@ -5,18 +5,18 @@ from gobject.option import OptionGroup, OptionParser, make_option
group = OptionGroup("example", "OptionGroup Example", "Shows all example options",
option_list = [
- make_option("--example",
- action="store_true",
- dest="example",
+ make_option("--example",
+ action="store_true",
+ dest="example",
help="An example option."),
])
-parser = OptionParser("NAMES ...",
+parser = OptionParser("NAMES ...",
description="A simple gobject.option example.",
option_list = [
- make_option("--file", "-f",
- type="filename",
- action="store",
+ make_option("--file", "-f",
+ type="filename",
+ action="store",
dest="file",
help="A filename option"),
# ...