From e33d987480bca1d34e1782a3436d43f556160e3c Mon Sep 17 00:00:00 2001 From: Mike Blume Date: Wed, 2 Oct 2013 09:06:12 -0700 Subject: [PATCH] import with statements from the future this will allow the script to *load* in Python 2.5 and display an error explaining that the script is only supported under python >=2.6 --- configure-syslog.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure-syslog.py b/configure-syslog.py index 5b6fde9..0736e59 100755 --- a/configure-syslog.py +++ b/configure-syslog.py @@ -14,6 +14,8 @@ # (c) Copyright Loggly 2013. ###################################################################### +from __future__ import with_statement + import os, os.path import platform import re