Return-Path: Delivered-To: apmail-incubator-libcloud-commits-archive@minotaur.apache.org Received: (qmail 40807 invoked from network); 8 Feb 2010 07:26:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 8 Feb 2010 07:26:43 -0000 Received: (qmail 46260 invoked by uid 500); 8 Feb 2010 07:26:43 -0000 Delivered-To: apmail-incubator-libcloud-commits-archive@incubator.apache.org Received: (qmail 46246 invoked by uid 500); 8 Feb 2010 07:26:43 -0000 Mailing-List: contact libcloud-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: libcloud-dev@incubator.apache.org Delivered-To: mailing list libcloud-commits@incubator.apache.org Received: (qmail 46237 invoked by uid 99); 8 Feb 2010 07:26:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Feb 2010 07:26:43 +0000 X-ASF-Spam-Status: No, hits=-1998.5 required=10.0 tests=ALL_TRUSTED,WEIRD_PORT 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; Mon, 08 Feb 2010 07:26:33 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 964392388980; Mon, 8 Feb 2010 07:26:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r907572 - /incubator/libcloud/trunk/libcloud/drivers/ec2.py Date: Mon, 08 Feb 2010 07:26:12 -0000 To: libcloud-commits@incubator.apache.org From: pquerna@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100208072612.964392388980@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: pquerna Date: Mon Feb 8 07:26:12 2010 New Revision: 907572 URL: http://svn.apache.org/viewvc?rev=907572&view=rev Log: fix pyflakes warnings in ec2 driver: libcloud/drivers/ec2.py:24: 'httplib' imported but unused libcloud/drivers/ec2.py:28: 'hashlib' imported but unused Modified: incubator/libcloud/trunk/libcloud/drivers/ec2.py Modified: incubator/libcloud/trunk/libcloud/drivers/ec2.py URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/ec2.py?rev=907572&r1=907571&r2=907572&view=diff ============================================================================== --- incubator/libcloud/trunk/libcloud/drivers/ec2.py (original) +++ incubator/libcloud/trunk/libcloud/drivers/ec2.py Mon Feb 8 07:26:12 2010 @@ -21,11 +21,9 @@ from libcloud.base import Node, Response, ConnectionUserAndKey, NodeDriver, NodeSize, NodeImage, NodeLocation import base64 import hmac -import httplib from hashlib import sha256 import time import urllib -import hashlib from xml.etree import ElementTree as ET EC2_US_EAST_HOST = 'ec2.us-east-1.amazonaws.com'