Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions DataProcessingTools/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,9 @@ def __init__(self, *args, **kwargs):
else:
# unable to find for both hashing methods, create object, saving as new hash
fname = self.get_filename() # create object
# decrement redoLevel here
kwargs["redoLevel"] = max(0, kwargs.get("redoLevel", 0) - 1)
kwargs["saveLeveL"] = max(0, kwargs.get("saveLevel", 0) - 1)
self.create(*args, **kwargs)
if self.dirs and saveLevel > 0:
self.save()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from distutils.core import setup

setup(name="DataProcessingTools",
version="0.22.0",
version="0.23.0",
description="""Tools for processing data with hierarchical organization""",
url="https://github.com/grero/DataProcessingTools.git",
author="Roger Herikstad",
Expand Down