Changes between Version 3 and Version 4 of Ticket #26488, comment 3


Ignore:
Timestamp:
May 10, 2016, 7:19:59 AM (8 years ago)
Author:
Simon Philips

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #26488, comment 3

    v3 v4  
    99        full_new_name = ("%s.%s" % (app_label, self.new_name)).lower()
    1010
    11         for (app, model_name), model in state.models.items():
     11        for model in state.models.values():
    1212            if full_old_name in model.bases:
    1313                model.bases = tuple(full_new_name if b == full_old_name else b
Back to Top