The setting COMMON_TEMPORARY_DIRECTORY is now STORAGE_TEMPORARY_DIRECTORY. Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
11 lines
238 B
Python
11 lines
238 B
Python
from __future__ import unicode_literals
|
|
|
|
|
|
class FakeStorageSubclass(object):
|
|
"""
|
|
Placeholder class to allow serializing the real storage subclass to
|
|
support migrations.
|
|
"""
|
|
def __eq__(self, other):
|
|
return True
|