Code review comment for lp:~jk0/nova/lp744833

Revision history for this message
Brian Lamar (blamar) wrote :

I feel like this should be headed off at the vim.py level where suds is actually used. Maybe it's just me, but I'd rather:

try:
    import suds
except ImportError:
    suds = None

and then check in the Vim class that suds is not None?

« Back to merge proposal