From: Eduardo Habkost <[email protected]> Signed-off-by: Eduardo Habkost <[email protected]>
diff --git a/server/hosts/__init__.py b/server/hosts/__init__.py index 21bca1c..f8b6803 100644 --- a/server/hosts/__init__.py +++ b/server/hosts/__init__.py @@ -12,7 +12,10 @@ You should 'import hosts' instead of importing every available host module. # host abstract classes from base_classes import Host from remote import RemoteHost -#from site_host import SiteHost +try: + from site_host import SiteHost +except ImportError, e: + pass # host implementation classes from ssh_host import SSHHost -- To unsubscribe from this list: send the line "unsubscribe kvm-commits" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
