Skip to content

Commit

Permalink
Resolve DeprecationWarning
Browse files Browse the repository at this point in the history
Resolves "DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working" - see wagtail#5484
  • Loading branch information
therefromhere committed Aug 6, 2019
1 parent bb4e2fe commit bcbd606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wagtail/utils/l18n/translation.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import gettext
import bisect
from locale import getdefaultlocale
from collections import MutableMapping
from collections.abc import MutableMapping
from copy import copy, deepcopy

import six
Expand Down

0 comments on commit bcbd606

Please sign in to comment.