Skip to content

Commit

Permalink
Fixed AttributeError on 2_bootstrap.py: 'module' object has no
Browse files Browse the repository at this point in the history
attribute 'g_is_installation_complete'.
  • Loading branch information
evandrocoan committed Oct 21, 2017
1 parent d02f667 commit 40b91c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 2_bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def plugin_loaded():
import ChannelManager
is_installation_complete = ChannelManager.channel_installer.g_is_installation_complete

except ImportError:
except( ImportError, AttributeError ):
pass

if is_installation_complete:
Expand Down Expand Up @@ -299,7 +299,7 @@ def plugin_loaded():
import ChannelManager
is_installation_complete = ChannelManager.channel_installer.g_is_installation_complete
except ImportError:
except( ImportError, AttributeError ):
pass
if is_installation_complete:
Expand Down

0 comments on commit 40b91c8

Please sign in to comment.