We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf72b45 commit 769bc8eCopy full SHA for 769bc8e
zipline/data/bundles/core.py
@@ -435,7 +435,7 @@ def ingest(name,
435
raise ValueError('Need to ingest a bundle that creates '
436
'writers in order to downgrade the assets'
437
' db.')
438
- log.info("Ingesting %s." % name)
+ log.info("Ingesting {}.", name)
439
bundle.ingest(
440
environ,
441
asset_db_writer,
@@ -609,7 +609,7 @@ def should_clean(name):
609
cleaned = set()
610
for run in all_runs:
611
if should_clean(run):
612
- log.info("Cleaning %s." % run)
+ log.info("Cleaning {}.", run)
613
path = pth.data_path([name, run], environ=environ)
614
shutil.rmtree(path)
615
cleaned.add(path)
0 commit comments