diff --git a/openpype/hosts/hiero/plugins/create/create_shot_clip.py b/openpype/hosts/hiero/plugins/create/create_shot_clip.py
index 96938bc2e7..07b7a62b2a 100644
--- a/openpype/hosts/hiero/plugins/create/create_shot_clip.py
+++ b/openpype/hosts/hiero/plugins/create/create_shot_clip.py
@@ -1,5 +1,5 @@
import openpype.hosts.hiero.api as phiero
-# from pype.hosts.hiero.api import plugin, lib
+# from openpype.hosts.hiero.api import plugin, lib
# reload(lib)
# reload(plugin)
# reload(phiero)
diff --git a/openpype/hosts/hiero/plugins/load/load_clip.py b/openpype/hosts/hiero/plugins/load/load_clip.py
index 9fc84be7e2..4eadf28956 100644
--- a/openpype/hosts/hiero/plugins/load/load_clip.py
+++ b/openpype/hosts/hiero/plugins/load/load_clip.py
@@ -1,6 +1,6 @@
from avalon import io, api
import openpype.hosts.hiero.api as phiero
-# from pype.hosts.hiero.api import plugin, lib
+# from openpype.hosts.hiero.api import plugin, lib
# reload(lib)
# reload(plugin)
# reload(phiero)
diff --git a/openpype/hosts/hiero/plugins/publish/extract_clip_effects.py b/openpype/hosts/hiero/plugins/publish/extract_clip_effects.py
index 3890bed79c..d2ac7f4786 100644
--- a/openpype/hosts/hiero/plugins/publish/extract_clip_effects.py
+++ b/openpype/hosts/hiero/plugins/publish/extract_clip_effects.py
@@ -1,4 +1,4 @@
-# from pype import plugins
+# from openpype import plugins
import os
import json
import pyblish.api
diff --git a/openpype/hosts/hiero/plugins/publish/precollect_instances.py b/openpype/hosts/hiero/plugins/publish/precollect_instances.py
index 5231efff9f..bdf007de06 100644
--- a/openpype/hosts/hiero/plugins/publish/precollect_instances.py
+++ b/openpype/hosts/hiero/plugins/publish/precollect_instances.py
@@ -2,7 +2,7 @@ from compiler.ast import flatten
from pyblish import api
from openpype.hosts.hiero import api as phiero
import hiero
-# from pype.hosts.hiero.api import lib
+# from openpype.hosts.hiero.api import lib
# reload(lib)
# reload(phiero)
diff --git a/openpype/hosts/houdini/startup/MainMenuCommon.XML b/openpype/hosts/houdini/startup/MainMenuCommon.XML
index faa811de86..77ee182e7c 100644
--- a/openpype/hosts/houdini/startup/MainMenuCommon.XML
+++ b/openpype/hosts/houdini/startup/MainMenuCommon.XML
@@ -44,7 +44,7 @@ publish.show(parent)
diff --git a/openpype/hosts/maya/api/__init__.py b/openpype/hosts/maya/api/__init__.py
index a3f81d6960..6038b3e230 100644
--- a/openpype/hosts/maya/api/__init__.py
+++ b/openpype/hosts/maya/api/__init__.py
@@ -136,13 +136,13 @@ def on_open(_):
from openpype.widgets import popup
cmds.evalDeferred(
- "from pype.hosts.maya.api import lib;"
+ "from openpype.hosts.maya.api import lib;"
"lib.remove_render_layer_observer()")
cmds.evalDeferred(
- "from pype.hosts.maya.api import lib;"
+ "from openpype.hosts.maya.api import lib;"
"lib.add_render_layer_observer()")
cmds.evalDeferred(
- "from pype.hosts.maya.api import lib;"
+ "from openpype.hosts.maya.api import lib;"
"lib.add_render_layer_change_observer()")
# # Update current task for the current scene
# update_task_from_path(cmds.file(query=True, sceneName=True))
@@ -183,13 +183,13 @@ def on_new(_):
avalon.logger.info("Running callback on new..")
with suspended_refresh():
cmds.evalDeferred(
- "from pype.hosts.maya.api import lib;"
+ "from openpype.hosts.maya.api import lib;"
"lib.remove_render_layer_observer()")
cmds.evalDeferred(
- "from pype.hosts.maya.api import lib;"
+ "from openpype.hosts.maya.api import lib;"
"lib.add_render_layer_observer()")
cmds.evalDeferred(
- "from pype.hosts.maya.api import lib;"
+ "from openpype.hosts.maya.api import lib;"
"lib.add_render_layer_change_observer()")
lib.set_context_settings()
diff --git a/openpype/hosts/maya/api/menu.json b/openpype/hosts/maya/api/menu.json
index b32f295ec4..bf4d812d33 100644
--- a/openpype/hosts/maya/api/menu.json
+++ b/openpype/hosts/maya/api/menu.json
@@ -22,7 +22,7 @@
},
{
"type": "action",
- "command": "from pype.tools.assetcreator import app as assetcreator; assetcreator.show(context='maya')",
+ "command": "from openpype.tools.assetcreator import app as assetcreator; assetcreator.show(context='maya')",
"sourcetype": "python",
"title": "Asset Creator",
"tooltip": "Open the Asset Creator"
diff --git a/openpype/hosts/maya/plugins/load/load_rendersetup.py b/openpype/hosts/maya/plugins/load/load_rendersetup.py
index 7cd536cc39..b1f5d2dfe2 100644
--- a/openpype/hosts/maya/plugins/load/load_rendersetup.py
+++ b/openpype/hosts/maya/plugins/load/load_rendersetup.py
@@ -32,7 +32,7 @@ class RenderSetupLoader(api.Loader):
def load(self, context, name, namespace, data):
"""Load RenderSetup settings."""
from avalon.maya.pipeline import containerise
- # from pype.hosts.maya.api.lib import namespaced
+ # from openpype.hosts.maya.api.lib import namespaced
asset = context['asset']['name']
namespace = namespace or lib.unique_namespace(
diff --git a/openpype/modules/ftrack/plugins/publish/integrate_hierarchy_ftrack.py b/openpype/modules/ftrack/plugins/publish/integrate_hierarchy_ftrack.py
index 68d0f9cf55..118a73a636 100644
--- a/openpype/modules/ftrack/plugins/publish/integrate_hierarchy_ftrack.py
+++ b/openpype/modules/ftrack/plugins/publish/integrate_hierarchy_ftrack.py
@@ -4,12 +4,12 @@ import six
import pyblish.api
from avalon import io
-# Copy of constant `pype.modules.ftrack.lib.avalon_sync.CUST_ATTR_AUTO_SYNC`
+# Copy of constant `openpype.modules.ftrack.lib.avalon_sync.CUST_ATTR_AUTO_SYNC`
CUST_ATTR_AUTO_SYNC = "avalon_auto_sync"
CUST_ATTR_GROUP = "openpype"
-# Copy of `get_pype_attr` from pype.modules.ftrack.lib
+# Copy of `get_pype_attr` from openpype.modules.ftrack.lib
# TODO import from openpype's ftrack module when possible to not break Python 2
def get_pype_attr(session, split_hierarchical=True):
custom_attributes = []