You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by pq...@apache.org on 2010/02/08 08:26:28 UTC

svn commit: r907576 - /incubator/libcloud/trunk/libcloud/base.py

Author: pquerna
Date: Mon Feb  8 07:26:28 2010
New Revision: 907576

URL: http://svn.apache.org/viewvc?rev=907576&view=rev
Log:
Fix mismatched factory implements

Modified:
    incubator/libcloud/trunk/libcloud/base.py

Modified: incubator/libcloud/trunk/libcloud/base.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/base.py?rev=907576&r1=907575&r2=907576&view=diff
==============================================================================
--- incubator/libcloud/trunk/libcloud/base.py (original)
+++ incubator/libcloud/trunk/libcloud/base.py Mon Feb  8 07:26:28 2010
@@ -415,7 +415,7 @@
     Base connection which accepts a user_id and key
     """
     interface.implementsOnly(IConnectionUserAndKey)
-    interface.classProvides(IConnectionUserAndKey)
+    interface.classProvides(IConnectionUserAndKeyFactory)
 
     user_id = None