diff options
Diffstat (limited to 'Lib/dos-8x3/userlist.py')
-rwxr-xr-x | Lib/dos-8x3/userlist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dos-8x3/userlist.py b/Lib/dos-8x3/userlist.py index 7bd0298..d4a8d2f 100755 --- a/Lib/dos-8x3/userlist.py +++ b/Lib/dos-8x3/userlist.py @@ -4,7 +4,7 @@ class UserList: def __init__(self, initlist=None): self.data = [] if initlist is not None: - # XXX should this accept an arbitary sequence? + # XXX should this accept an arbitrary sequence? if type(initlist) == type(self.data): self.data[:] = initlist elif isinstance(initlist, UserList): |