Skip to content

Commit

Permalink
Merge pull request #7484 from indirectlylit/logger
Browse files Browse the repository at this point in the history
print -> logger.info
  • Loading branch information
jonboiser committed Aug 26, 2020
2 parents 813946a + 2049bea commit a0c575b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/kolibri-tools/lib/webpack_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def load_plugins_from_file(file_path):
if file_path.startswith("http"):
if requests is None:
raise ImportError("Requests is required to import plugins from urls")
print(
logger.info(
"Downloading plugins manifest from {file_path}".format(file_path=file_path)
)
_, path = tempfile.mkstemp(suffix=".txt", text=True)
Expand Down

0 comments on commit a0c575b

Please sign in to comment.