From 5990ae0bd0c3ab7c7d56abf9e93ed5aa4f9b8329 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 25 Oct 2010 10:09:55 -0400 Subject: [PATCH] Import with statement in src/sorting/scaling.py for Python 2.5. --- src/sorting/scaling.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sorting/scaling.py b/src/sorting/scaling.py index a2bbb44..0d8d6d2 100755 --- a/src/sorting/scaling.py +++ b/src/sorting/scaling.py @@ -8,6 +8,8 @@ The executable should support one of the following: Where the data file is of the format output by data.py. """ +from __future__ import with_statement + import subprocess import time import sys -- 2.26.2