diff --git a/app/plugins/grass_engine.py b/app/plugins/grass_engine.py index cb3c7ff9..179a91ea 100644 --- a/app/plugins/grass_engine.py +++ b/app/plugins/grass_engine.py @@ -100,9 +100,9 @@ class GrassContext: env["PYTHONPATH"] = "%s%s%s" % (self.python_path, sep, env.get("PYTHONPATH", "")) # Execute it - logger.info("Executing grass script from {}: {} -c {} location --exec python3 {} {}".format(self.get_cwd(), self.grass_binary, self.location, script, " ".join(params))) + logger.info("Executing grass script from {}: {} --tmp-location {} --exec python3 {} {}".format(self.get_cwd(), self.grass_binary, self.location, script, " ".join(params))) - command = [self.grass_binary, '-c', self.location, 'location', '--exec', 'python3', script] + params + command = [self.grass_binary, '--tmp-location', self.location, '--exec', 'python3', script] + params if platform.system() == "Windows": # communicate() hangs on Windows so we use check_output instead try: diff --git a/app/templates/app/welcome.html b/app/templates/app/welcome.html index 84ce6dd7..9e0814e3 100644 --- a/app/templates/app/welcome.html +++ b/app/templates/app/welcome.html @@ -225,7 +225,7 @@ {% else %}

{% trans 'Welcome!' %} ☺

-
Before we get started, we need to create an administrator account for you:
+
{% trans "Before we get started, we need to create an administrator account for you:" %}
{% endif %}
{% csrf_token %}