Remove usage of ordereddict

This was only needed for Python < 2.7, but glanceclient's setup.cfg
already declares compatibility only with 2.7.

Change-Id: I80d42abf5dd5565da424a90a93545ba82ef7a58d
This commit is contained in:
Dirk Mueller
2018-03-08 10:30:31 +01:00
parent d90805cd07
commit 5916702cb2
2 changed files with 1 additions and 5 deletions
+1 -4
View File
@@ -15,10 +15,7 @@
# under the License.
import argparse
try:
from collections import OrderedDict
except ImportError:
from ordereddict import OrderedDict
from collections import OrderedDict
import hashlib
import logging
import os