~ubuntuone-pqm-team/django/stable

« back to all changes in this revision

Viewing changes to django/core/servers/basehttp.py

  • Committer: Natalia
  • Date: 2015-12-29 23:45:16 UTC
  • Revision ID: natalia.bidart@ubuntu.com-20151229234516-i822kgwc995ia2vk
Imported Django 1.8.7 from released tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
 
108
108
    def log_message(self, format, *args):
109
109
 
110
 
        msg = "[%s]" % self.log_date_time_string()
 
110
        msg = "[%s] " % self.log_date_time_string()
111
111
        try:
112
112
            msg += "%s\n" % (format % args)
113
113
        except UnicodeDecodeError: