summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/taler-merchant-backoffice4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/taler-merchant-backoffice b/bin/taler-merchant-backoffice
index 0b190d5..e3fbf0f 100755
--- a/bin/taler-merchant-backoffice
+++ b/bin/taler-merchant-backoffice
@@ -27,7 +27,7 @@ def handle_serve_http(args):
"--die-on-term",
"--log-format", UWSGI_LOGFMT,
"--http", spec,
- "--module", "talerbackoffice",
+ "--module", "talerbackoffice.backoffice.app",
"--env", "BACKOFFICE_BACKEND=%s" % TC["backoffice-%s" % args.frontend]["backend"].value_string(required=True),
"--env", "BACKOFFICE_INSTANCES=%s" % TC["backoffice-%s" % args.frontend]["instances"].value_string(required=True))
@@ -38,7 +38,7 @@ def handle_serve_uwsgi(args):
"--master",
"--die-on-term",
"--log-format", UWSGI_LOGFMT,
- "--module", "talerbackoffice",
+ "--module", "talerbackoffice.backoffice.app",
"--env", "BACKOFFICE_BACKEND=%s" % TC["backoffice-%s" % args.frontend]["backend"].value_string(required=True),
"--env", "BACKOFFICE_INSTANCES=%s" % TC["backoffice-%s" % args.frontend]["instances"].value_string(required=True)]
if serve_uwsgi == "tcp":