1
0
Fork 0
forked from github/pelican

Merge pull request #2389 from farseerfc/master

Fix DeprecationWarning in tests about collections.abc
This commit is contained in:
Justin Mayer 2018-10-24 09:19:09 +02:00 committed by GitHub
commit ddb5f4ed71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,11 @@
# -*- coding: utf-8 -*-
from __future__ import print_function, unicode_literals
import collections
try:
import collections.abc as collections
except ImportError:
import collections
import locale
import logging
import os