aboutsummaryrefslogtreecommitdiffstats
path: root/example_plugins/example.py
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2013-03-28 18:08:59 +0000
committerBryn M. Reeves <bmr@redhat.com>2013-03-28 18:08:59 +0000
commit29e180fbc291686ee991952005c84c4b0d216a86 (patch)
tree1d6432854825efb97d816bc713145d052c8fce04 /example_plugins/example.py
parent4f0da96964fec5bdc2b66d4117aa9773e5a12a4d (diff)
downloadsos-29e180fbc291686ee991952005c84c4b0d216a86.tar.gz
Make more names pep8 compliant across the tree
Fix policy and utility function, method and variable names to use lower case underscored style instead of camelCase. Related to Issue #112. Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
Diffstat (limited to 'example_plugins/example.py')
-rwxr-xr-xexample_plugins/example.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example_plugins/example.py b/example_plugins/example.py
index 76977035..e13d92b5 100755
--- a/example_plugins/example.py
+++ b/example_plugins/example.py
@@ -28,7 +28,7 @@ class example(Plugin, RedHatPlugin):
# each option is a tuple of the following format:
# (name, description, fast or slow, default value)
# each option will be addressable like -k name=value
- optionList = [("init.d", 'Gathers the init.d directory', 'slow', 0),
+ option_list = [("init.d", 'Gathers the init.d directory', 'slow', 0),
('follicles', 'Gathers information about each follicle on every toe', 'slow', 0),
('color', 'Gathers toenail polish color', 'fast', 0)]