summaryrefslogtreecommitdiff
path: root/lib/spack/external/ruamel/yaml/compat.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/spack/external/ruamel/yaml/compat.py')
-rw-r--r--lib/spack/external/ruamel/yaml/compat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/external/ruamel/yaml/compat.py b/lib/spack/external/ruamel/yaml/compat.py
index 6eee151c51..a1778bef28 100644
--- a/lib/spack/external/ruamel/yaml/compat.py
+++ b/lib/spack/external/ruamel/yaml/compat.py
@@ -12,7 +12,7 @@ try:
from ruamel.ordereddict import ordereddict
except:
try:
- from collections import OrderedDict # nopyqver
+ from collections import OrderedDict
except ImportError:
from ordereddict import OrderedDict
# to get the right name import ... as ordereddict doesn't do that