summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2016-12-26 10:38:25 +0200
committerLars Wirzenius <liw@liw.fi>2016-12-26 10:38:25 +0200
commit915288f1998164b1d635e8575e2ef36cb2906aaa (patch)
tree2602a6e75b881e5328e22ae68966caf77d4de74d
parent13d4486cf1d44621c6f7d39e621ae2326bbaa3cc (diff)
downloadttystatus-915288f1998164b1d635e8575e2ef36cb2906aaa.tar.gz
Add missing empty line
-rw-r--r--NEWS3
-rw-r--r--ttystatus/fmt.py1
2 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index bbeca60..9e6a313 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,9 @@ Version 0.33+git, not yet released
---------------------------------
* Require Python 2.7.
+* Add a missing empty line needed for PEP8 compliance. This caused a
+ failure in the test suite, no idea why it wasn't caught when making
+ the previous release.
Version 0.32, released 2016-01-09
---------------------------------
diff --git a/ttystatus/fmt.py b/ttystatus/fmt.py
index e0328fb..11c0ce6 100644
--- a/ttystatus/fmt.py
+++ b/ttystatus/fmt.py
@@ -28,6 +28,7 @@ def _find_widgets():
subclasses = [w for w in widget_classes if w != ttystatus.Widget]
return subclasses
+
widgets = _find_widgets()