Remove hashtag lines from all .py files.
Change-Id: Ib2b52f6ff71c8f553e0cfb1936c8e0917e70c619
Signed-off-by: Michael Walsh <micwalsh@us.ibm.com>
diff --git a/bin/process_plug_in_packages.py b/bin/process_plug_in_packages.py
index 9b6e68f..c45f559 100755
--- a/bin/process_plug_in_packages.py
+++ b/bin/process_plug_in_packages.py
@@ -27,7 +27,6 @@
# I use this variable in calls to print_var.
hex = 1
-###############################################################################
# Create parser object to process command line parameters and args.
# Create parser object.
@@ -124,10 +123,8 @@
# names of stock parm options we want. These stock parms are pre-defined by
# gen_get_options.
stock_list = [("test_mode", 0), ("quiet", 1), ("debug", 0)]
-###############################################################################
-###############################################################################
def exit_function(signal_number=0,
frame=None):
@@ -141,10 +138,7 @@
qprint_pgm_footer()
-###############################################################################
-
-###############################################################################
def signal_handler(signal_number, frame):
r"""
@@ -162,10 +156,7 @@
# when we received the signal.
exit(0)
-###############################################################################
-
-###############################################################################
def validate_parms():
r"""
@@ -187,10 +178,7 @@
return True
-###############################################################################
-
-###############################################################################
def run_pgm(plug_in_dir_path,
call_point,
allow_shell_rc):
@@ -288,10 +276,7 @@
return rc, shell_rc, failed_plug_in_name
-###############################################################################
-
-###############################################################################
def main():
r"""
@@ -365,13 +350,8 @@
print_error("At least one plug-in failed.\n")
return False
-###############################################################################
-
-###############################################################################
# Main
if not main():
exit(1)
-
-###############################################################################
diff --git a/bin/validate_plug_ins.py b/bin/validate_plug_ins.py
index d0e541d..15d02a1 100755
--- a/bin/validate_plug_ins.py
+++ b/bin/validate_plug_ins.py
@@ -22,7 +22,6 @@
sys.path.insert(0, save_path_0)
-###############################################################################
# Create parser object to process command line parameters and args.
# Create parser object.
@@ -32,32 +31,26 @@
" It will also print a list of the absolute plug-in" +
" directory paths for use by the calling program.",
formatter_class=argparse.RawTextHelpFormatter,
- prefix_chars='-+'
- )
+ prefix_chars='-+')
# Create arguments.
parser.add_argument(
'plug_in_dir_paths',
nargs='?',
default="",
- help=plug_in_dir_paths_help_text + default_string
- )
+ help=plug_in_dir_paths_help_text + default_string)
parser.add_argument(
'--mch_class',
default="obmc",
- help=mch_class_help_text + default_string
- )
+ help=mch_class_help_text + default_string)
# The stock_list will be passed to gen_get_options. We populate it with the
# names of stock parm options we want. These stock parms are pre-defined by
# gen_get_options.
stock_list = [("test_mode", 0), ("quiet", 1), ("debug", 0)]
-###############################################################################
-
-###############################################################################
def exit_function(signal_number=0,
frame=None):
@@ -71,10 +64,7 @@
qprint_pgm_footer()
-###############################################################################
-
-###############################################################################
def signal_handler(signal_number, frame):
r"""
@@ -92,10 +82,7 @@
# when we received the signal.
exit(0)
-###############################################################################
-
-###############################################################################
def validate_parms():
r"""
@@ -106,10 +93,7 @@
return True
-###############################################################################
-
-###############################################################################
def main():
r"""
@@ -145,13 +129,8 @@
return True
-###############################################################################
-
-###############################################################################
# Main
if not main():
exit(1)
-
-###############################################################################