summaryrefslogtreecommitdiff
path: root/bin/taler-merchant-demos
diff options
context:
space:
mode:
Diffstat (limited to 'bin/taler-merchant-demos')
-rwxr-xr-xbin/taler-merchant-demos4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/taler-merchant-demos b/bin/taler-merchant-demos
index 098416a..9cc7516 100755
--- a/bin/taler-merchant-demos
+++ b/bin/taler-merchant-demos
@@ -62,7 +62,7 @@ def handle_serve_uwsgi(config, whichShop):
try:
os.execlp(*params)
except:
- echo "Failed to start uwsgi. Please make sure to install uwsgi for Python3."
+ sys.stderr.write("Failed to start uwsgi. Please make sure to install uwsgi for Python3.")
sys.exit(1)
##
@@ -82,7 +82,7 @@ def handle_serve_http(config, whichShop, port=None):
"--http", spec,
"--module", "talermerchantdemos.{}:app".format(whichShop))
except:
- echo "Failed to start uwsgi. Please make sure to install uwsgi for Python3."
+ sys.stderr.write("Failed to start uwsgi. Please make sure to install uwsgi for Python3.")
sys.exit(1)
@click.command("Global shop launcher")