Stop using oslo_utils.fnmatch

This was a work around for old buggy Python 2.7 versions. Everybody will have
to upgrade!

Change-Id: Id105e2e8c1fab7af49c11b323db64886e57eade6
This commit is contained in:
Julien Danjou 2017-05-16 11:24:19 +02:00
parent ffbb446f3f
commit 26f87a457e
2 changed files with 6 additions and 1 deletions

View File

@ -13,12 +13,12 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import fnmatch
import hashlib
import os
import iso8601
from oslo_config import cfg
from oslo_utils import fnmatch
from oslo_utils import netutils
import six
from stevedore import driver

View File

@ -0,0 +1,5 @@
---
other:
- |
A workaround for a Python 2.7 bug in `fnmatch` has been removed. Makes sure
you use at least Python 2.7.9 to avoid running into it.