Fix page to use the new return value from get_attribute_value.
This commit is contained in:
parent
5ec19c2645
commit
c18937d3ba
1 changed files with 2 additions and 2 deletions
|
|
@ -10,8 +10,8 @@ def get_last_paged_objects(source_object):
|
||||||
Returns a list of objects of the user's last paged list, or None if invalid
|
Returns a list of objects of the user's last paged list, or None if invalid
|
||||||
or non-existant.
|
or non-existant.
|
||||||
"""
|
"""
|
||||||
last_paged_dbrefs = source_object.get_attribute_value("LASTPAGED")
|
last_paged_dbrefs = source_object.get_attribute_value("LASTPAGED", None)
|
||||||
if last_paged_dbrefs is not False:
|
if last_paged_dbrefs:
|
||||||
last_paged_objects = list()
|
last_paged_objects = list()
|
||||||
try:
|
try:
|
||||||
last_paged_dbref_list = [
|
last_paged_dbref_list = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue