Code review comment for lp:~mordred/glance/conditional-sphinx

Revision history for this message
Rick Harris (rconradharris) wrote :

I'm leaving it as `except`, though, it might be preferable to do something like

try:
  <stuff>
except ImportError:
  pass # if it's not there, don't worry about it
except:
  LOG.warn("Strange thing occured, perhaps look into this?")

« Back to merge proposal