Skip to content

Commit

Permalink
allowing control characters
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason McFarland committed Jan 12, 2017
1 parent 9f463f4 commit f1b868b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validate_feed.py
Expand Up @@ -40,7 +40,7 @@ def validate_json(contents):
"""
validate that the file is well-formed JSON
"""
return json.loads(contents)
return json.loads(contents, strict=False)


def validate_feed(feed, pedantic=False):
Expand Down

0 comments on commit f1b868b

Please sign in to comment.