Changes between Initial Version and Version 2 of Ticket #1556
- Timestamp:
- Mar 29, 2006, 9:31:40 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1556 – Description
initial v2 3 3 In the 2594th revision of "django/core/management.py" there's an error (I suppose) which was introduced in r2567. 4 4 5 {{{ 5 6 $ ./manage.py install sampleapp 6 7 Traceback (most recent call last): … … 14 15 sys.stderr.write(style.ERROR("""Error: %s couldn't be installed. Possible reasons: 15 16 TypeError: cannot concatenate 'str' and 'instance' objects 17 }}} 16 18 17 19 It can be fixed by: 18 20 21 {{{ 19 22 $ svn diff django/core/management.py 20 23 Index: django/core/management.py … … 31 34 sys.exit(1) 32 35 transaction.commit_unless_managed() 36 }}} 33 37 34 38 Though I don't know if it was the author's intention.