summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/taler-merchant-donations4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/taler-merchant-donations b/bin/taler-merchant-donations
index 0bda611..ccf6a4e 100644
--- a/bin/taler-merchant-donations
+++ b/bin/taler-merchant-donations
@@ -44,7 +44,7 @@ def handle_serve_http(args):
spec = ":%d" % (port, )
os.execlp(
"uwsgi", "uwsgi", "--master", "--die-on-term", "--log-format",
- UWSGI_LOGFMT, "--http", spec, "--module", "talerdonations"
+ UWSGI_LOGFMT, "--http", spec, "--module", "talerdonations.donations:app"
)
@@ -61,7 +61,7 @@ def handle_serve_uwsgi(args):
).lower()
params = [
"uwsgi", "uwsgi", "--master", "--die-on-term", "--log-format",
- UWSGI_LOGFMT, "--module", "talerdonations"
+ UWSGI_LOGFMT, "--module", "talerdonations.donations:app"
]
if serve_uwsgi == "tcp":
port = TC["donations"]["uwsgi_port"].value_int(required=True)