diff options
author | jquast <contact@jeffquast.com> | 2014-03-26 10:04:29 -0700 |
---|---|---|
committer | jquast <contact@jeffquast.com> | 2014-03-26 10:04:29 -0700 |
commit | 50f6cb5d6ff2b93650e597d9def92b32012f6e4d (patch) | |
tree | e0e65c494436fa4cb722bb075903f2081894114c | |
parent | 7164282b5af72422bba5d1d480e97ae4a2d62a1f (diff) | |
download | blessings-50f6cb5d6ff2b93650e597d9def92b32012f6e4d.tar.gz |
comment fix
-rw-r--r-- | blessed/formatters.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/blessed/formatters.py b/blessed/formatters.py index 21f41f9..b242ca8 100644 --- a/blessed/formatters.py +++ b/blessed/formatters.py @@ -130,11 +130,8 @@ class NullCallableString(unicode): # # is actually simplified result of NullCallable()(), so # turtles all the way down: we return another instance. - return NullCallableString() - return args[0] # Should we force even strs in Python 2.x to be - # unicodes? No. How would I know what encoding to use - # to convert it? + return args[0] def split_compound(compound): |