From: W. Trevor King Date: Wed, 21 Jul 2010 16:25:00 +0000 (-0400) Subject: Import with statement so recent server.py changes work with Python 2.5 X-Git-Tag: v0.1~19 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f3186d107bd1e2dfbab21d93a71796c7f1cdb198;p=cookbook.git Import with statement so recent server.py changes work with Python 2.5 --- diff --git a/cookbook/server.py b/cookbook/server.py index 81f8208..580813c 100644 --- a/cookbook/server.py +++ b/cookbook/server.py @@ -18,6 +18,8 @@ """Serve cookbooks over HTTP. """ +from __future__ import with_statement + import os import random import types