diff --git a/bin/cfn-get-metadata b/bin/cfn-get-metadata index 8d3af60..d8d4006 100755 --- a/bin/cfn-get-metadata +++ b/bin/cfn-get-metadata @@ -27,7 +27,7 @@ if os.path.exists('/opt/aws/bin'): sys.path.insert(0, '/opt/aws/bin') from cfn_helper import * else: - from heat_jeos.cfntools.cfn_helper import * + from heat_cfntools.cfntools.cfn_helper import * description = " " parser = argparse.ArgumentParser(description=description) diff --git a/bin/cfn-hup b/bin/cfn-hup index 32b4d40..8487753 100755 --- a/bin/cfn-hup +++ b/bin/cfn-hup @@ -27,7 +27,7 @@ if os.path.exists('/opt/aws/bin'): sys.path.insert(0, '/opt/aws/bin') from cfn_helper import * else: - from heat_jeos.cfntools.cfn_helper import * + from heat_cfntools.cfntools.cfn_helper import * description = " " parser = argparse.ArgumentParser(description=description) diff --git a/bin/cfn-init b/bin/cfn-init index 066e5ba..4af16c6 100755 --- a/bin/cfn-init +++ b/bin/cfn-init @@ -25,7 +25,7 @@ if os.path.exists('/opt/aws/bin'): sys.path.insert(0, '/opt/aws/bin') from cfn_helper import * else: - from heat_jeos.cfntools.cfn_helper import * + from heat_cfntools.cfntools.cfn_helper import * description = " " parser = argparse.ArgumentParser(description=description) diff --git a/bin/cfn-push-stats b/bin/cfn-push-stats index 09fe72c..51f490f 100755 --- a/bin/cfn-push-stats +++ b/bin/cfn-push-stats @@ -45,7 +45,7 @@ if os.path.exists('/opt/aws/bin'): sys.path.insert(0, '/opt/aws/bin') from cfn_helper import * else: - from heat_jeos.cfntools.cfn_helper import * + from heat_cfntools.cfntools.cfn_helper import * KILO = 1024 MEGA = 1048576 diff --git a/bin/cfn-signal b/bin/cfn-signal index abafc63..6fd08a5 100755 --- a/bin/cfn-signal +++ b/bin/cfn-signal @@ -25,7 +25,7 @@ if os.path.exists('/opt/aws/bin'): sys.path.insert(0, '/opt/aws/bin') from cfn_helper import * else: - from heat_jeos.cfntools.cfn_helper import * + from heat_cfntools.cfntools.cfn_helper import * description = " " diff --git a/heat_jeos/__init__.py b/heat_cfntools/__init__.py similarity index 100% rename from heat_jeos/__init__.py rename to heat_cfntools/__init__.py diff --git a/heat_jeos/cfntools/__init__.py b/heat_cfntools/cfntools/__init__.py similarity index 100% rename from heat_jeos/cfntools/__init__.py rename to heat_cfntools/cfntools/__init__.py diff --git a/heat_jeos/cfntools/cfn_helper.py b/heat_cfntools/cfntools/cfn_helper.py similarity index 100% rename from heat_jeos/cfntools/cfn_helper.py rename to heat_cfntools/cfntools/cfn_helper.py