Revert "implement fix for #249"

This reverts commit 86fd04c7a8.

Closes #389
This commit is contained in:
Buck Ryan 2018-04-22 12:11:56 -04:00
parent 08c07fa1f1
commit 73b01d6597
3 changed files with 8 additions and 2 deletions

View file

@ -1,5 +1,11 @@
# Changes
2018-04-22 (version 0.5.4)
* Reverted fix for
([#249](https://github.com/b-ryan/powerline-shell/issues/249)) because it
caused issues on Mac.
2018-04-21 (version 0.5.3)
* New theme! (gruvbox)

View file

@ -90,7 +90,7 @@ class Powerline(object):
self.cwd = get_valid_cwd()
mode = config.get("mode", "patched")
self.color_template = self.color_templates[args.shell]
self.reset = self.color_template % '[0m\]\[\e[0K'
self.reset = self.color_template % '[0m'
self.lock = Powerline.symbols[mode]['lock']
self.network = Powerline.symbols[mode]['network']
self.separator = Powerline.symbols[mode]['separator']

View file

@ -3,7 +3,7 @@ from setuptools import setup, find_packages
setup(
name="powerline-shell",
version="0.5.3",
version="0.5.4",
description="A pretty prompt for your shell",
author="Buck Ryan",
author_email="buck@buckryan.com",