diff --git a/authorizedkeys/parser.py b/authorizedkeys/parser.py index a88623b..9353706 100644 --- a/authorizedkeys/parser.py +++ b/authorizedkeys/parser.py @@ -47,7 +47,7 @@ class AuthorizedKey: split = line.split(' ', maxsplit=2) self.type = split[0] self.key_b64 = split[1] - self.coment = split[2] if len(split) >= 3 else None + self.comment = split[2] if len(split) >= 3 else None def to_string(self): result = ''