Changes between Initial Version and Version 1 of Ticket #4128
- Timestamp:
- Apr 23, 2007, 6:02:15 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4128
- Property Component Admin interface → Tools
- Property Triage Stage Unreviewed → Accepted
-
Ticket #4128 – Description
initial v1 9 9 I hacked around a bit and found the problem in the setup.py file. The original relevant portion is: 10 10 11 {{{ 12 #!python 11 13 # Compile the list of packages available, because distutils doesn't have 12 14 # an easy way to do this. … … 15 17 len_root_dir = len(root_dir) 16 18 django_dir = os.path.join(root_dir, 'django') 17 19 }}} 18 20 19 21 I reckoned that the "root directory" was not being recognised properly... so I made the following change: 20 22 23 {{{ 24 #!python 21 25 # Compile the list of packages available, because distutils doesn't have 22 26 # an easy way to do this. … … 25 29 len_root_dir = len(root_dir) 26 30 django_dir = os.path.join(root_dir, 'django') 31 }}} 27 32 28 33 The above worked like magic without any hassles. So what's up guys, is this a bug or what? BTW, I had the latest installer tool :