No need for this now that we have the imports done correctly

This commit is contained in:
Joshua Harlow 2012-06-20 23:39:46 -07:00
parent f70046b813
commit 0b9a130b38
1 changed files with 0 additions and 6 deletions

View File

@ -32,12 +32,6 @@ possible_topdir = os.path.normpath(os.path.join(os.path.abspath(
if os.path.exists(os.path.join(possible_topdir, "cloudinit", "__init__.py")):
sys.path.insert(0, possible_topdir)
# This is so config modules can be found
if os.path.exists(os.path.join(possible_topdir,
"cloudinit", 'config', "__init__.py")):
sys.path.insert(0, os.path.join(possible_topdir, 'cloudinit', 'config'))
from cloudinit import log as logging
from cloudinit import netinfo
from cloudinit import settings