1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-26 07:14:38 +02:00

Patch.py now removes any leading spaces

This commit is contained in:
cyian-1756
2019-03-07 04:38:37 -05:00
parent e20274d1d4
commit 9e4b8a92ba

View File

@@ -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: