From 3748589731180081b769c50758d4acfaa9087259 Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Sun, 9 Jan 2022 18:10:15 +0100 Subject: [PATCH] Fix typo --- authorizedkeys/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = ''