don't sync on instatiation.

if we sync on instantiation login happens automatically.
we don't get a chance to call account_verify or rather it
doesn't make sense.
This commit is contained in:
Adi Sieker
2011-03-09 11:02:32 +01:00
parent 77e7901e1f
commit 9b7cce6509
+4 -4
View File
@@ -3,7 +3,7 @@
convore.types
~~~~~~~~~~~
This module contains the reusable helper objects
This module contains the reusable helper objects
used throughout the wrapper.
:copyright: (c) 2011 by Kenneth Reitz.
@@ -24,14 +24,14 @@ class SyncedList(object):
def __init__(self):
self.data = []
if hasattr(self, 'sync'):
self.sync()
#if hasattr(self, 'sync'):
# self.sync()
def __repr__(self):
return str(self.data)
def __getitem__(self, key):
if isinstance(key, int):