Ticket #4884: conf.diff

File conf.diff, 469 bytes (added by Noam Raphael <spam.noam@…>, 17 years ago)
  • conf/__init__.py

     
    3737            # __setattr__(), which would be an infinite loop.
    3838            self.__dict__['_target'] = value
    3939        else:
     40            if self._target is None:
     41                self._import_settings()
    4042            setattr(self._target, name, value)
    4143
    4244    def _import_settings(self):
Back to Top