Skip to content

Commit

Permalink
version bump to 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
hotzenklotz committed Sep 20, 2019
1 parent 3300f2a commit d94adcc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pybeerxml/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
class Parser(object):

def nodes_to_object(self, node, object):
"Map all child nodes to one object's attributes"
"Map all child nodes to an object's attributes"

for n in list(node):
self.node_to_object(n, object)

def node_to_object(self, node, object):
"Map a single node to one object's attributes"
"Map a single node to an object's attributes"

attribute = self.to_lower(node.tag)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import pybeerxml

# circleci.py version
VERSION = "1.0.6"
VERSION = "1.0.7"

def readme():
"""print long description"""
Expand Down

0 comments on commit d94adcc

Please sign in to comment.