Skip to content

Commit

Permalink
Fix the problem where a triggered empty configuration profile was not…
Browse files Browse the repository at this point in the history
… deactivated when appropriate.

Fixes #3667.
  • Loading branch information
jcsteh committed Nov 27, 2013
1 parent b21f22a commit dc72741
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/config/__init__.py
Expand Up @@ -752,7 +752,7 @@ def _triggerProfileExit(self, trigger):
return

profile = trigger._profile
if not profile:
if profile is None:
return
profile.triggered = False
try:
Expand Down

0 comments on commit dc72741

Please sign in to comment.