Reverted logging style
This commit is contained in:
parent
e25c23cf1c
commit
6fb61e1e3f
24 changed files with 100 additions and 106 deletions
|
|
@ -73,10 +73,10 @@ def init_default_extensions(extension_dir):
|
|||
default_ext_path = os.path.join(extension_dir, "defaults.py")
|
||||
|
||||
if not os.path.isfile(default_ext_path): # If user extensions file doesn't exist
|
||||
logging.warning("No extension file found at {}. Creating...", (extension_dir))
|
||||
logging.warning("No extension file found at %s. Creating...", (extension_dir))
|
||||
create_file(default_ext_path)
|
||||
|
||||
logging.info("Populating {}...", (default_ext_path))
|
||||
logging.info("Populating %s...", (default_ext_path))
|
||||
with open(default_ext_path, "w") as outfile:
|
||||
outfile.write(_DEFAULT_EXTENSION_INIT)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue