scripts: use str.format() instead of concatenating in some places

This commit is contained in:
Anton Shestakov
2018-07-28 14:01:55 +08:00
parent 95a04308d8
commit 7ee81c90fe
4 changed files with 4 additions and 4 deletions

View File

@@ -158,7 +158,7 @@ class Sprite:
y = y + 1
continue
im.save("sprite_" + str(self.number) + ".png")
im.save("sprite_{}.png".format(self.number))
inf = Infile("x.out")

View File

@@ -21,7 +21,7 @@ def is_BOM_encoded_file(path):
if len(sys.argv) > 2:
sys.exit('Usage: ' + sys.argv[0] + ' [root]')
sys.exit('Usage: {} [root]'.format(sys.argv[0]))
top = os.getcwd()
if len(sys.argv) == 2:

View File

@@ -24,7 +24,7 @@ for root, _, files in os.walk(script_dir):
problem_found = True
print("Invalid/Improper Class Declarations Found:")
path = print_root_regex.search(root).group(0)
print("*" + path + "\\" + script + ":" + found_class)
print("*{}:{}".format(os.path.join(path, script), found_class))
if problem_found:
print("\nReason: The class declaration(s) didn't begin as follows:")

View File

@@ -28,7 +28,7 @@ def has_trailing_whitespaces(path):
if len(sys.argv) > 2:
sys.exit('Usage: ' + sys.argv[0] + ' [root]')
sys.exit('Usage: {} [root]'.format(sys.argv[0]))
top = os.getcwd()
if len(sys.argv) == 2: