From 0c58273e69f08d17e69d9af6b04734bdce302532 Mon Sep 17 00:00:00 2001 Message-Id: <0c58273e69f08d17e69d9af6b04734bdce302532.1716511825.git.mdw@distorted.org.uk> From: Mark Wooding Date: Mon, 22 Dec 2014 20:32:58 +0000 Subject: [PATCH] agpl.py: Python 2.5 compatibility. Organization: Straylight/Edgeware From: Mark Wooding --- agpl.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/agpl.py b/agpl.py index a35ea3f..0929e78 100644 --- a/agpl.py +++ b/agpl.py @@ -23,6 +23,8 @@ ### License along with Chopwood; if not, see ### . +from __future__ import with_statement + import contextlib as CTX import grp as GR import os as OS -- [mdw]