From ca2809be7156a4315d1ae70e926f3c88cf25d127 Mon Sep 17 00:00:00 2001 From: Foo Date: Sun, 10 May 2015 22:16:14 +0300 Subject: [PATCH 1/2] Fix args.side: make it a string back One of the last changes made it a list. --- powerline/commands/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/powerline/commands/main.py b/powerline/commands/main.py index df61f0d9..da228edf 100644 --- a/powerline/commands/main.py +++ b/powerline/commands/main.py @@ -53,6 +53,7 @@ def finish_args(environ, args): [path for path in environ.get('POWERLINE_CONFIG_PATHS', '').split(':') if path] + (args.config_path or []) ) + args.side = args.side[0] return args From 6e0951d403c3041529526bcf31c4f873903290d4 Mon Sep 17 00:00:00 2001 From: Foo Date: Sun, 10 May 2015 22:16:32 +0300 Subject: [PATCH 2/2] Update base version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 89a7978c..09aa952b 100644 --- a/setup.py +++ b/setup.py @@ -59,7 +59,7 @@ else: def get_version(): - base_version = '2.1.1' + base_version = '2.1.2' base_version += '.dev9999' try: return base_version + '+git.' + str(subprocess.check_output(['git', 'rev-parse', 'HEAD']).strip())