Skip to content
Snippets Groups Projects
Commit 664c153a authored by Mark Nauwelaerts's avatar Mark Nauwelaerts
Browse files

overrides: fix a few typos in exception messages

parent 7dffdb68
No related branches found
No related tags found
No related merge requests found
......@@ -118,7 +118,7 @@ class Pad(Gst.Pad):
try:
res = self._real_query_func(pad, parent, query)
except TypeError:
raise TypeError("Invalid query method %s, 2 or 3 arguments requiered"
raise TypeError("Invalid query method %s, 2 or 3 arguments required"
% self._real_query_func)
query.mini_object.refcount += 1
......@@ -157,7 +157,7 @@ class GhostPad(Gst.GhostPad):
def __init__(self, name, target=None, direction=None):
if direction is None:
if target is None:
raise TypeError('you must pass at least one of target'
raise TypeError('you must pass at least one of target '
'and direction')
direction = target.props.direction
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment