jpmckinney / validictory

🎓 deprecated general purpose python data validator
Other
240 stars 57 forks source link

Positional arguments missing error #82

Closed Shravya-Raju closed 9 years ago

Shravya-Raju commented 9 years ago

I am trying to use validictory package in python 2.6 and the validator failed due to the following error.

File "build/bdist.linux-x86_64/egg/validictory/validator.py", line 275, in validate_items '{}[{}]'.format(path, index)) ValueError: zero length field name in format

Suggestions online: In Python 2.6, you need indices in the format specs, like this: "{0} {1}\n".format(x,y)

jamesturk commented 9 years ago

sorry, Python 2.6 is not supported by the latest versions of Validictory. Python 2.6 hit its end of life over a year ago (October 2013)

Shravya-Raju commented 9 years ago

Ok Thank you.