diff --git a/src/steamos-devkit-service.py b/src/steamos-devkit-service.py index 7bdfbd4f42e29a44bf0a88730b78d1ba5d805e36..306ad38c12b63d733dfd673bf757f6600f595175 100644 --- a/src/steamos-devkit-service.py +++ b/src/steamos-devkit-service.py @@ -78,8 +78,8 @@ def write_key(post_body): if length >= 64 * 1024: print("Key length too long") return None - if not post_body.decode().startswith('ssh-rsa'): - print("Key doesn't start with ssh-rsa") + if not post_body.decode().startswith('ssh-rsa '): + print("Key doesn't start with ssh-rsa ") return None # Get to the base64 bits