Skip to content

Commit

Permalink
minor wording fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maxfischer2781 committed Jul 28, 2017
1 parent fdb5b49 commit 337a08b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphi/abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class NodeError(Exception):
class AdjacencyListTypeError(TypeError):
"""AdjacencyList set with an incorrect type"""
def __init__(self, item):
TypeError.__init__(self, 'AdjacencyList must be None, its node or a mapping, not %r' % item.__class__)
TypeError.__init__(self, 'AdjacencyList of a node must be None, the node or a mapping, not %r' % item.__class__)


class Graph(abc_collection.Container):
Expand Down

0 comments on commit 337a08b

Please sign in to comment.