Skip to content
This repository has been archived by the owner on Oct 3, 2019. It is now read-only.

Commit

Permalink
Improve unknown extension warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Jan 6, 2017
1 parent aa0e28b commit 4765472
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion yorm/__init__.py
Expand Up @@ -7,4 +7,4 @@
from .bases import Container, Converter, Mappable

__project__ = 'YORM'
__version__ = '1.2b2'
__version__ = '1.2b3'
2 changes: 1 addition & 1 deletion yorm/diskutils.py
Expand Up @@ -100,7 +100,7 @@ def parse(text, path):
elif ext in ['yml', 'yaml']:
data = _parse_yaml(text, path)
else:
log.warning("Unrecognized file extension: %s", ext)
log.warning("Unrecognized file extension (.%s), assuming YAML", ext)
data = _parse_yaml(text, path)

if not isinstance(data, dict):
Expand Down

0 comments on commit 4765472

Please sign in to comment.