Skip to content

Commit

Permalink
[Screen.py] Fix a schoolboy coding error
Browse files Browse the repository at this point in the history
Did someone really think it was a good idea to try to re-assign "False"?

How did this get past the infallible quality control radar?

Original commit: bb28004#diff-685ef552d889a7ab8ab8df5a1bb08bacR12
  • Loading branch information
Huevos authored and WanWizard committed Jun 20, 2020
1 parent d01b1c2 commit 308b571
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/python/Screens/Screen.py
Expand Up @@ -11,8 +11,8 @@

class Screen(dict, GUISkin):

False, SUSPEND_STOPS, SUSPEND_PAUSES = range(3)
ALLOW_SUSPEND = False
NO_SUSPEND, SUSPEND_STOPS, SUSPEND_PAUSES = range(3)
ALLOW_SUSPEND = NO_SUSPEND

global_screen = None

Expand Down

0 comments on commit 308b571

Please sign in to comment.