summaryrefslogtreecommitdiff
path: root/compat.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2018-06-27 10:10:18 +0200
committerAnthon van der Neut <anthon@mnt.org>2018-06-27 10:10:18 +0200
commitd827dd3f0e3dbee1eebf35e34d56f936314ba2bb (patch)
treea7940dc97bfe92afe328f5866d20e8afa7309727 /compat.py
parenta16eb0f1cb816dcf8ed59ccd130098f419db98da (diff)
downloadruamel.yaml-d827dd3f0e3dbee1eebf35e34d56f936314ba2bb.tar.gz
re-added test to make sure C-Compiler is available0.15.41
Diffstat (limited to 'compat.py')
-rw-r--r--compat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat.py b/compat.py
index 5eddc59..0a11341 100644
--- a/compat.py
+++ b/compat.py
@@ -15,7 +15,7 @@ _DEFAULT_YAML_VERSION = (1, 2)
try:
from ruamel.ordereddict import ordereddict
-except:
+except: # NOQA
try:
from collections import OrderedDict
except ImportError: