From 97080b1c2a4a8efe0f725adf06ad57aecfb06999 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Sat, 7 Sep 2024 15:28:26 -0400 Subject: [PATCH] run python unbuffered so output always appears in the correct order even when running shell scripts --- setup/migrate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/migrate.py b/setup/migrate.py index b1ce972e..aa47b8e8 100755 --- a/setup/migrate.py +++ b/setup/migrate.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/python3 -u # -*- indent-tabs-mode: t; tab-width: 8; python-indent-offset: 8; -*- ##### ##### This file is part of Mail-in-a-Box-LDAP which is released under the @@ -471,7 +471,7 @@ def run_miabldap_migrations(): migration_id = 0 else: print() - print("%s file doesn't exists. Skipping migration..." % (migration_id_file,)) + print("%s file doesn't exist. Skipping migration..." % (migration_id_file,)) return ourver = int(migration_id)