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:
3
patch.py
3
patch.py
@@ -12,6 +12,9 @@ from hashlib import sha256
|
|||||||
# - commit all changes
|
# - commit all changes
|
||||||
message = input('message: ')
|
message = input('message: ')
|
||||||
|
|
||||||
|
# Strip any spaces that might've been entered before the message
|
||||||
|
message.lstrip()
|
||||||
|
|
||||||
|
|
||||||
def get_ripme_json():
|
def get_ripme_json():
|
||||||
with open('ripme.json') as dataFile:
|
with open('ripme.json') as dataFile:
|
||||||
|
Reference in New Issue
Block a user