mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
10 lines
215 B
Python
10 lines
215 B
Python
#!/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"))
|
|
|