mirror of
https://github.com/reddit-archive/reddit.git
synced 2026-01-28 16:28:01 -05:00
_by_fullname: Fix tdb_cassandra Thing implementation.
This commit is contained in:
@@ -412,7 +412,9 @@ class ThingBase(object):
|
||||
return '%s_%s' % (self._type_prefix, self._id)
|
||||
|
||||
@classmethod
|
||||
def _by_fullname(cls, fnames, return_dict=True):
|
||||
def _by_fullname(cls, fnames, return_dict=True, ignore_missing=False):
|
||||
if ignore_missing:
|
||||
raise NotImplementedError
|
||||
ids, is_single = tup(fnames, True)
|
||||
|
||||
by_cls = {}
|
||||
|
||||
Reference in New Issue
Block a user