Skip to content

Instantly share code, notes, and snippets.

@dvl
Created October 7, 2015 20:30
Show Gist options
  • Save dvl/ebbe27b09b2c16b1a136 to your computer and use it in GitHub Desktop.
Save dvl/ebbe27b09b2c16b1a136 to your computer and use it in GitHub Desktop.
class DummyStorage(FileSystemStorage):
def _open(self, name, mode='rb'):
try:
return File(open(self.path(name), mode))
except IOError:
name = '/home/andre/Imagens/placeholder.jpg'
return File(open(name), mode)
DEFAULT_FILE_STORAGE = 'geral.custom_settings.DummyStorage'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment