Skip to content
This repository has been archived by the owner on Jan 11, 2022. It is now read-only.

Commit

Permalink
Bump version number for release of 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Nordhausen committed Aug 28, 2015
1 parent 125446d commit 6a13295
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/yamlreader.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__all__ = ["YamlReaderError", "yaml_load"]
__version__ = "3.0.0"
__version__ = "3.0.1"

from yaml import MarkedYAMLError, safe_load, safe_dump
import glob
Expand Down Expand Up @@ -66,12 +66,12 @@ def yaml_load(source, defaultdata=NO_DEFAULT):
source can be a file, a dir, a list/tuple of files or a string containing
a glob expression (with ?*[]).
For a dir all *.yaml files will be read in alphabetical order.
For a directory, all *.yaml files will be read in alphabetical order.
defaultdata can be used to initialize the data.
"""
logger = logging.getLogger(__name__)
logger.debug("initilized with source=%s, defaultdata=%s" % (source, defaultdata))
logger.debug("initialized with source=%s, defaultdata=%s" % (source, defaultdata))
if defaultdata is NO_DEFAULT:
data = None
else:
Expand Down

0 comments on commit 6a13295

Please sign in to comment.