mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 22:43:42 +00:00
Always start python via shebang lines.
This is preparation for supporting using Python 3 in production. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
committed by
Tim Abbott
parent
2d6525df04
commit
207cf6302b
@@ -19,5 +19,5 @@ from zerver.worker.queue_processors import get_active_worker_queues
|
||||
queues = get_active_worker_queues()
|
||||
|
||||
args = sys.argv[1:]
|
||||
subprocess.Popen(['python', 'manage.py', 'process_queue', '--all'] + args,
|
||||
subprocess.Popen(['./manage.py', 'process_queue', '--all'] + args,
|
||||
stderr=subprocess.STDOUT)
|
||||
|
||||
Reference in New Issue
Block a user