Opened 19 years ago

Closed 19 years ago

Last modified 18 years ago

#459 closed (fixed)

setup.py: admin_templates/registration/*.html is not to installed

Reported by: igor@… Owned by: Adrian Holovaty
Component: Tools Version:
Severity: trivial Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

'admin_templates/registration/*.html' is ignored in setup.py and not to be installed.

--- setup.py    (revision 576)
+++ setup.py    (working copy)
@@ -14,6 +14,7 @@
     packages = find_packages(),
     package_data = {
         'django.conf': ['admin_templates/*.html', 'admin_templates/doc/*.html',
+                        'admin_templates/registration/*.html',
                         'admin_media/css/*.css', 'admin_media/img/admin/*.gif',
                         'admin_media/img/admin/*.png', 'admin_media/js/*.js',
                         'admin_media/js/admin/*js'],

Change History (2)

comment:1 by Adrian Holovaty, 19 years ago

Resolution: fixed
Status: newclosed

Fixed in [619].

comment:2 by URL, 18 years ago

Type: defect
Note: See TracTickets for help on using tickets.
Back to Top