add extra space after ▶️ to remove text overlap

This commit is contained in:
ryanmerolle 2020-12-30 18:23:12 -05:00
parent 0f1cc9eea0
commit cbaaffc589
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ with scandir(this_dir) as it:
if not f.name.endswith('.py'):
continue
print(f"▶️ Running the startup script {f.path}")
print(f"▶️ Running the startup script {f.path}")
try:
runpy.run_path(f.path)
except SystemExit as e: