security list type is a class level property now

This commit is contained in:
fawce
2015-02-09 13:32:01 -05:00
parent 67da7ca7a3
commit 233bf3080d
+3 -3
View File
@@ -84,11 +84,11 @@ class SecurityList(object):
class SecurityListSet(object):
# provide a cut point to substitute other security
# list implementations.
security_list_type = SecurityList
def __init__(self, current_date_func, lookup_func=None):
# provide a cut point to substitute other security
# list implementations.
self.security_list_type = SecurityList
if lookup_func is None:
self.lookup_func = loopback
else: