From 29e180fbc291686ee991952005c84c4b0d216a86 Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Thu, 28 Mar 2013 18:08:59 +0000 Subject: 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 --- example_plugins/example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example_plugins/example.py') 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)] -- cgit