Skip to content

Commit 8f22801

Browse files
committed
Moved patch.py into project tree -- it's not being maintained any more.
- Legacy-Id: 17330
1 parent ffcce20 commit 8f22801

3 files changed

Lines changed: 1202 additions & 3 deletions

File tree

ietf/checks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
# Copyright The IETF Trust 2015-2019, All Rights Reserved
1+
# Copyright The IETF Trust 2015-2020, All Rights Reserved
22
# -*- coding: utf-8 -*-
33

44

55
from __future__ import absolute_import, print_function, unicode_literals
66

77
import os
8-
import patch
98
import six
109
import sys
1110
import time
@@ -19,6 +18,7 @@
1918
from django.conf import settings
2019
from django.core import checks
2120
from django.utils.module_loading import import_string
21+
import ietf.utils.patch as patch
2222

2323
checks_run = [] # type: List[str]
2424

ietf/settings.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1061,7 +1061,6 @@ def skip_unreadable_post(record):
10611061
CHECKS_LIBRARY_PATCHES_TO_APPLY = [
10621062
'patch/fix-django-unicode-comparison-bug.patch',
10631063
'patch/fix-unidecode-argument-warning.patch',
1064-
'patch/fix-patch-no-chdir.patch',
10651064
]
10661065
if DEBUG:
10671066
try:

0 commit comments

Comments
 (0)