mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-10 14:14:19 +00:00
Fix typos
This commit is contained in:
parent
6fa7c12c48
commit
8304842daa
1 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ OPERATORS = {
|
|||
'iendswith': lambda v,q: v.lower().endswith(q),
|
||||
'ismissing': None, # special case in _checkAttrs
|
||||
'regex': lambda v,q: re.match(q, v),
|
||||
'iregex': lambda v,q: re.match(q, v, flasg=re.IGNORECASE),
|
||||
'iregex': lambda v,q: re.match(q, v, flags=re.IGNORECASE),
|
||||
}
|
||||
|
||||
|
||||
|
@ -205,7 +205,7 @@ class PlexObject(object):
|
|||
return True
|
||||
|
||||
def _loadData(self, data):
|
||||
raise NotImplemented('Abstract method not implemented.')
|
||||
raise NotImplementedError('Abstract method not implemented.')
|
||||
|
||||
|
||||
class PlexPartialObject(PlexObject):
|
||||
|
|
Loading…
Reference in a new issue