From 3e554d7b8a90cafc677ef49dc89ccd81a146d2bb Mon Sep 17 00:00:00 2001 From: Just van Rossum Date: Thu, 21 Nov 2002 10:29:57 +0000 Subject: [PATCH] name kwargs kwargs --- Mac/Lib/plistlib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mac/Lib/plistlib.py b/Mac/Lib/plistlib.py index a4a9f1918530..9c914d208c00 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__):