diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-26 14:56:42 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-26 14:56:42 +0100 |
commit | 4665d8c94325966a715e4a701fd593181dd76664 (patch) | |
tree | c7154b1d170d3be9d0f366d24cbaac146af86aff | |
parent | 7f46dcc49cc33e2168da1ec4d52c552c3546dd67 (diff) | |
download | patches-4665d8c94325966a715e4a701fd593181dd76664.tar patches-4665d8c94325966a715e4a701fd593181dd76664.tar.gz |
gnu: python-django: Use INVOKE.
* gnu/packages/django.scm (python-django)[arguments]: Use INVOKE.
-rw-r--r-- | gnu/packages/django.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index 848b1c63cb..a2fa1db036 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -74,7 +74,7 @@ (string-split (getenv "PYTHONPATH") #\:)) "', "))) - (zero? (system* "python" "tests/runtests.py"))))))) + (invoke "python" "tests/runtests.py")))))) ;; TODO: Install extras/django_bash_completion. (native-inputs `(("tzdata" ,tzdata-for-tests) |