Return-Path: X-Original-To: apmail-libcloud-commits-archive@www.apache.org Delivered-To: apmail-libcloud-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8DDB6DBCE for ; Wed, 7 Nov 2012 04:17:23 +0000 (UTC) Received: (qmail 78628 invoked by uid 500); 7 Nov 2012 04:17:23 -0000 Delivered-To: apmail-libcloud-commits-archive@libcloud.apache.org Received: (qmail 78588 invoked by uid 500); 7 Nov 2012 04:17:22 -0000 Mailing-List: contact commits-help@libcloud.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@libcloud.apache.org Delivered-To: mailing list commits@libcloud.apache.org Received: (qmail 78580 invoked by uid 99); 7 Nov 2012 04:17:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Nov 2012 04:17:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Nov 2012 04:17:21 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 8AF2623888E3; Wed, 7 Nov 2012 04:17:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1406449 - /libcloud/trunk/libcloud/storage/drivers/local.py Date: Wed, 07 Nov 2012 04:17:01 -0000 To: commits@libcloud.apache.org From: tomaz@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121107041701.8AF2623888E3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tomaz Date: Wed Nov 7 04:17:01 2012 New Revision: 1406449 URL: http://svn.apache.org/viewvc?rev=1406449&view=rev Log: Add missing from __future__ import with_statement. Modified: libcloud/trunk/libcloud/storage/drivers/local.py Modified: libcloud/trunk/libcloud/storage/drivers/local.py URL: http://svn.apache.org/viewvc/libcloud/trunk/libcloud/storage/drivers/local.py?rev=1406449&r1=1406448&r2=1406449&view=diff ============================================================================== --- libcloud/trunk/libcloud/storage/drivers/local.py (original) +++ libcloud/trunk/libcloud/storage/drivers/local.py Wed Nov 7 04:17:01 2012 @@ -17,6 +17,8 @@ Provides storage driver for working with local filesystem """ +from __future__ import with_statement + import errno import os import shutil