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

Merge pull request #1237 from cyian-1756/releaseScriptChanges

Patch.py now removes any leading spaces from commit message
This commit is contained in:
cyian-1756
2019-03-16 11:46:37 -05:00
committed by GitHub

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: