Ticket #12849: no_str.diff

File no_str.diff, 997 bytes (added by Fraser Nevett, 15 years ago)
  • django/core/management/base.py

     
    214214            except ImportError, e:
    215215                # If settings should be available, but aren't,
    216216                # raise the error and quit.
    217                 sys.stderr.write(self.style.ERROR(str('Error: %s\n' % e)))
     217                sys.stderr.write(self.style.ERROR('Error: %s\n' % e))
    218218                sys.exit(1)
    219219        try:
    220220            if self.requires_model_validation:
     
    230230                if self.output_transaction:
    231231                    print self.style.SQL_KEYWORD("COMMIT;")
    232232        except CommandError, e:
    233             sys.stderr.write(self.style.ERROR(str('Error: %s\n' % e)))
     233            sys.stderr.write(self.style.ERROR('Error: %s\n' % e))
    234234            sys.exit(1)
    235235
    236236    def validate(self, app=None, display_num_errors=False):
Back to Top