Changes between Initial Version and Version 2 of Ticket #1556


Ignore:
Timestamp:
Mar 29, 2006, 9:31:40 PM (18 years ago)
Author:
Adrian Holovaty
Comment:

(Fixed formatting in description.)

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1556 – Description

    initial v2  
    33In the 2594th revision of "django/core/management.py" there's an error (I suppose) which was introduced in r2567.
    44
     5{{{
    56$ ./manage.py install sampleapp
    67Traceback (most recent call last):
     
    1415    sys.stderr.write(style.ERROR("""Error: %s couldn't be installed. Possible reasons:
    1516TypeError: cannot concatenate 'str' and 'instance' objects
     17}}}
    1618
    1719It can be fixed by:
    1820
     21{{{
    1922$ svn diff django/core/management.py
    2023Index: django/core/management.py
     
    3134         sys.exit(1)
    3235     transaction.commit_unless_managed()
     36}}}
    3337
    3438Though I don't know if it was the author's intention.
Back to Top