Fix tabs/spaces in globals.py

Some tabs/extra spaces were inserted accidentally by GitHub text editor in the tech_name param validation, so has to remove them.
This commit is contained in:
Mik Igor 2023-10-27 01:35:04 +02:00 committed by GitHub
parent 173e47ae45
commit aa2cf88870
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -571,7 +571,7 @@ def import_tech():
tech_found = tech_dir
break;
# If the tech_name param specified by the user is not present in the technology folder, emit an error and quit
# If the tech_name param specified by the user is not present in the technology folder, emit an error and quit
if (tech_found is None):
debug.error(f"You specified \'tech_name={OPTS.tech_name}\' in your config file, but that technology is not present in the technologies folder!")
quit()