Skip to content

Commit

Permalink
fixing bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
nanorepublica committed Apr 13, 2017
1 parent c0a3e5b commit 18e7f39
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion duedil/resources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@ def __getattr__(self, name):
except AttributeError:
if name in self.attribute_names:
if not self.loaded:
self.load()
try:
self.load()
except ValueError:
pass
try:
return super(Resource, self).__getattribute__(name)
except AttributeError:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def run_tests(self):
sys.exit(errno)


version = '1.0.6'
version = '1.0.7'

setup(name='duedil',
version=version,
Expand Down

0 comments on commit 18e7f39

Please sign in to comment.