Add missing argument to os.environ

Fixes #1264
This commit is contained in:
ZyX 2015-01-11 00:22:52 +03:00
parent d562844a1a
commit 5d73ca814a
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ class EmptyArgs(object):
def init_environment(pl, args):
'''Initialize tmux environment from tmux configuration
'''
powerline = ShellPowerline(finish_args(EmptyArgs('tmux', args.config_path)))
powerline = ShellPowerline(finish_args(os.environ, EmptyArgs('tmux', args.config_path)))
# TODO Move configuration files loading out of Powerline object and use it
# directly
powerline.update_renderer()