Skip to content

Commit

Permalink
Merging with origin
Browse files Browse the repository at this point in the history
  • Loading branch information
mottosso committed Jun 9, 2015
2 parents 743c999 + d45e4a3 commit 69a085b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pyblish/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -614,9 +614,6 @@ def current_host():

executable = os.path.basename(sys.executable).lower()

if "python" in executable:
return "python"

if "maya" in executable:
return "maya"

Expand All @@ -626,9 +623,15 @@ def current_host():
if "modo" in executable:
return "modo"

if "houdini" in executable or "hou" in sys.modules:
return 'houdini'

if "houdini" in executable:
return "houdini"

if "python" in executable:
return "python"

return "unknown"


Expand Down

0 comments on commit 69a085b

Please sign in to comment.