﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
21827	Regression in 1.7: django-admin misses .py suffix	Florian Apolloner	nobody	"https://github.com/django/django/pull/2116 moved ''django-admin.py'' to ''django-admin'', we should either update the docs or change ''setup.py'' to:
{{{
diff --git a/setup.py b/setup.py
index 2818037..e65155d 100644
--- a/setup.py
+++ b/setup.py
@@ -44,7 +44,7 @@ setup(
     packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
     include_package_data=True,
     entry_points={'console_scripts': [
-        'django-admin = django.core.management:execute_from_command_line',
+        'django-admin.py = django.core.management:execute_from_command_line',
     ]},
     zip_safe=False,
     classifiers=[
}}}
This works on linux and should also work on windows (should ;)). Technically I'd like ''django-admin'' more, but it's somewhat backwards incompatible."	Bug	closed	Uncategorized	dev	Release blocker	fixed		Florian Apolloner	Accepted	0	0	0	0	0	0
