Skip to content

Commit

Permalink
revving uranium
Browse files Browse the repository at this point in the history
  • Loading branch information
toumorokoshi committed Jan 13, 2015
1 parent 5124828 commit 85ca959
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
]

setup(name='uranium',
version='0.0.22',
version='0.0.23',
description='a build system for python',
long_description='a build system for python',
author='Yusuke Tsutsumi',
Expand Down
3 changes: 1 addition & 2 deletions uranium/config/resolve_dict.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class CyclicReferenceException(ResolveDictExeception):
pass


class ResolveDict(UserDict):
class ResolveDict(UserDict, object):

def __init__(self, values, resolve_values):
self._resolve_values = resolve_values
Expand Down Expand Up @@ -80,7 +80,6 @@ def render(raw_string, values, key_tree=None):

def _get_variable(name, values, key_tree):
key_tree = copy.copy(key_tree)
print("{0}:{1}".format(name, key_tree))

if name in key_tree:
raise CyclicReferenceException(
Expand Down

0 comments on commit 85ca959

Please sign in to comment.