summaryrefslogtreecommitdiffstats
path: root/ipapython/ssh.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipapython/ssh.py')
-rw-r--r--ipapython/ssh.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ipapython/ssh.py b/ipapython/ssh.py
index d5439a973..7d52a205b 100644
--- a/ipapython/ssh.py
+++ b/ipapython/ssh.py
@@ -38,7 +38,8 @@ __all__ = ['SSHPublicKey']
OPENSSH_BASE_REGEX = re.compile(r'^[\t ]*(?P<keytype>[^\x00\n\r]+?) [\t ]*(?P<key>[^\x00\n\r]+?)(?:[\t ]+(?P<comment>[^\x00\n\r]*?)[\t ]*)?$')
OPENSSH_OPTIONS_REGEX = re.compile(r'(?P<name>[-0-9A-Za-z]+)(?:="(?P<value>(?:\\"|[^\x00\n\r"])*)")?')
-class SSHPublicKey(object):
+
+class SSHPublicKey:
"""
SSH public key object.
"""