Changeset - 025b79e9a3f3
[Not reviewed]
default
0 3 0
Dennis Fink - 3 years ago 2021-12-28 21:55:20
dennis.fink@c3l.lu
Fix typo and release
3 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
c3l_membership/__init__.py
Show inline comments
 
@@ -38,7 +38,7 @@ def create_app():
 
        "BITCOIN_CONVERSION_SCRIPT", "/usr/local/share/btc/BTC_Membership.pl"
 
    )
 
    app.config.setdefault(
 
        "ETHERUM_CONVERSION_SCRIPT", "/usr/local/share/eth/ETH_Membership.pl"
 
        "ETHEREUM_CONVERSION_SCRIPT", "/usr/local/share/eth/ETH_Membership.pl"
 
    )
 
    app.config.setdefault(
 
        "MONERO_CONVERSION_SCRIPT", "/usr/local/share/xmr/XMR_Membership.pl"
c3l_membership/views.py
Show inline comments
 
@@ -77,7 +77,7 @@ def index():
 
            ).decode("utf-8")
 
        elif form.payment.data == "ethereum":
 
            price = subprocess.check_output(
 
                [current_app.config["ETHERUM_CONVERSION_SCRIPT"], str(price)]
 
                [current_app.config["ETHEREUM_CONVERSION_SCRIPT"], str(price)]
 
            ).decode("utf-8")
 
        elif form.payment.data == "monero":
 
            price = subprocess.check_output(
pyproject.toml
Show inline comments
 
[tool.poetry]
 
name = "c3l-membership"
 
version = "1.1.0"
 
version = "1.1.1"
 
description = ""
 
authors = ["Dennis Fink <dennis.fink@c3l.lu>"]
 
license = "GPL-3.0-or-later"
0 comments (0 inline, 0 general)