Skip to content

Commit

Permalink
fix bug with nature of "log" object being sent to ingest_directory()
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-simpson committed Jul 31, 2023
1 parent de137fa commit a598e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipe_system/cal_service/localdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def add_directory(self, path, walk=False):
walk : bool
add files from all subdirectories?
"""
self._calmgr.ingest_directory(path, walk=walk, log=self.log)
self._calmgr.ingest_directory(path, walk=walk, log=None)

def remove_cal(self, calfile):
"""
Expand Down

0 comments on commit a598e31

Please sign in to comment.