Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jgillmanjr committed Dec 29, 2014
1 parent 7073bec commit 7dc6b0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pySchema4neo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def checkNode(self, Node, fromRelChk = False):
requiredProps = self.schema[nodeLabel]['requiredProperties']
for reqPropKey, reqPropDef in requiredProps.iteritems():
if reqPropKey not in nodeProperties.keys():
return {'success': False, 'err': 'The required node property ' + reqProp + ' is not defined in the node.'}
return {'success': False, 'err': 'The required node property ' + reqPropKey + ' is not defined in the node.'}
else:
if reqPropKey not in propValidator:
propValidator[reqPropKey] = reqPropDef['validator']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from distutils.core import setup

version = '0.5.1'
version = '0.5.2'

setup(
name = 'pySchema4neo',
Expand Down

0 comments on commit 7dc6b0d

Please sign in to comment.