You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2013/01/31 03:47:41 UTC

svn commit: r1440821 - /libcloud/trunk/libcloud/dns/drivers/gandi.py

Author: tomaz
Date: Thu Jan 31 02:47:41 2013
New Revision: 1440821

URL: http://svn.apache.org/viewvc?rev=1440821&view=rev
Log:
Fix Python 2.5 compatibility.

Modified:
    libcloud/trunk/libcloud/dns/drivers/gandi.py

Modified: libcloud/trunk/libcloud/dns/drivers/gandi.py
URL: http://svn.apache.org/viewvc/libcloud/trunk/libcloud/dns/drivers/gandi.py?rev=1440821&r1=1440820&r2=1440821&view=diff
==============================================================================
--- libcloud/trunk/libcloud/dns/drivers/gandi.py (original)
+++ libcloud/trunk/libcloud/dns/drivers/gandi.py Thu Jan 31 02:47:41 2013
@@ -13,6 +13,8 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+from __future__ import with_statement
+
 __all__ = [
     'GandiDNSDriver'
 ]