1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #25909 -- Added unicode_literals import to apps.py generated by startapp.

This commit is contained in:
Tim Graham
2015-12-10 09:13:05 -05:00
parent b0ad5081d5
commit 10427646b8
3 changed files with 10 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
from django.apps import AppConfig
{{ unicode_literals }}from django.apps import AppConfig
class {{ camel_case_app_name }}Config(AppConfig):