From 9e4b8a92badcb36cb44a74da0db4494e3abf9dfa Mon Sep 17 00:00:00 2001 From: cyian-1756 Date: Thu, 7 Mar 2019 04:38:37 -0500 Subject: [PATCH] Patch.py now removes any leading spaces --- patch.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/patch.py b/patch.py index 5ed45626..aa53755d 100644 --- a/patch.py +++ b/patch.py @@ -12,6 +12,9 @@ from hashlib import sha256 # - commit all changes message = input('message: ') +# Strip any spaces that might've been entered before the message +message.lstrip() + def get_ripme_json(): with open('ripme.json') as dataFile: