SatSale

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 6d42abd6c8134b8d097bb5f118c3d0d00f919596
parent 8f7d79eba66cd4eba549f9c248228a5c31bfd542
Author: NicholasFarrow <nicholas.w.farrow@gmail.com>
Date:   Sun, 17 Jan 2021 02:34:23 +1100

fix key error bug

Diffstat:
Mserver.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server.py b/server.py @@ -60,7 +60,7 @@ def make_payment(payload): # Return if label missing if 'id' in payload.keys(): - label = payload['label'] + label = payload['id'] else: label = "undefined"