mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
* Removed trailing whitespace. * Added newline to EOF if missing. * Removed blank lines at EOF. * Removed some stray tabs.
10 lines
214 B
Python
Executable File
10 lines
214 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# This works exactly like 2to3, except that it uses Django's fixers rather
|
|
# than 2to3's built-in fixers.
|
|
|
|
import sys
|
|
from lib2to3.main import main
|
|
|
|
sys.exit(main("django.utils.2to3_fixes"))
|