From 9a97f19a13b9d0fd1c232d9794a121eaf9bccd28 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 5 Jun 2019 14:49:28 +1000 Subject: [PATCH] tuhi: always use verbose mode when starting from git When starting from within the git directory, always use verbose mode. Because you're debugging it, otherwise you wouldn't start from git. Signed-off-by: Peter Hutterer --- tuhi.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tuhi.py b/tuhi.py index 4165213..bb41fe4 100755 --- a/tuhi.py +++ b/tuhi.py @@ -12,6 +12,7 @@ # import tuhi.base +import sys if __name__ == "__main__": - tuhi.base.main() + tuhi.base.main(sys.argv + ['--verbose'])