From fe077a453a2507229d017b01ac9db644d4d51a2a Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Wed, 9 Jan 2019 12:00:14 -0800 Subject: [PATCH] Change capitalization of message to be consistent --- compiler/sram.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/sram.py b/compiler/sram.py index 4db89eef..47e5176a 100644 --- a/compiler/sram.py +++ b/compiler/sram.py @@ -111,14 +111,14 @@ class sram(): start_time = datetime.datetime.now() from shutil import copyfile copyfile(OPTS.config_file + '.py', OPTS.output_path + OPTS.output_name + '.py') - print("Config: writing to {0}".format(OPTS.output_path + OPTS.output_name + '.py')) + print("Config: Writing to {0}".format(OPTS.output_path + OPTS.output_name + '.py')) print_time("Config", datetime.datetime.now(), start_time) # Write the datasheet start_time = datetime.datetime.now() from datasheet_gen import datasheet_gen dname = OPTS.output_path + self.s.name + ".html" - print("Datasheet: writing to {0}".format(dname)) + print("Datasheet: Writing to {0}".format(dname)) datasheet_gen.datasheet_write(self.s,dname) print_time("Datasheet", datetime.datetime.now(), start_time)