diff options
-rw-r--r-- | Mac/Lib/plistlib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Lib/plistlib.py b/Mac/Lib/plistlib.py index a4a9f19..9c914d2 100644 --- a/Mac/Lib/plistlib.py +++ b/Mac/Lib/plistlib.py @@ -172,8 +172,8 @@ class Dict: """Dict wrapper for convenient access of values through attributes.""" - def __init__(self, **args): - self.__dict__.update(args) + def __init__(self, **kwargs): + self.__dict__.update(kwargs) def __cmp__(self, other): if isinstance(other, self.__class__): |