From a0bf759fe7960277d06e2e9ab857258266fb8fa2 Mon Sep 17 00:00:00 2001 From: Fredrik Wahlberg Date: Tue, 27 Jan 2004 22:32:58 +0000 Subject: [PATCH] Should call python as #!/usr/bin/env python --- installer/check_modules.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/installer/check_modules.py b/installer/check_modules.py index 8b6b8fd..1c75fe9 100755 --- a/installer/check_modules.py +++ b/installer/check_modules.py @@ -1,12 +1,12 @@ -#!/usr/bin/python +#!/usr/bin/env python import sys try: - import dns - has = 1 + import dns + has = 1 except: - has = 0 + has = 0 if has == 1: - sys.exit(0) + sys.exit(0) else: - sys.exit(1) + sys.exit(1)