diff --git a/CHANGES b/CHANGES index 7c4ecfe132..3a81180017 100644 --- a/CHANGES +++ b/CHANGES @@ -6,7 +6,9 @@ Here you can find the recent changes to tmuxp. 2013-10-28 ---------- -- [cli] fix ``tmuxp load .`` +- [cli] fix ``tmuxp load .`` fixed +- [cli] fix ``tmuxp convert `` fixed. +- [internal] `pep257` fixes. 2013-10-27 ---------- @@ -258,3 +260,4 @@ initial .. _tmuxinator: https://github.com/aziz/tmuxinator .. _teamocil: https://github.com/remiprev/teamocil .. _argcomplete: https://github.com/kislyuk/argcomplete +.. _pep257: http://www.python.org/dev/peps/pep-0257/ diff --git a/tmuxp/__init__.py b/tmuxp/__init__.py index 64df497e78..c21f557403 100644 --- a/tmuxp/__init__.py +++ b/tmuxp/__init__.py @@ -20,4 +20,4 @@ import logging -__version__ = '0.0.18' +__version__ = '0.0.19' diff --git a/tmuxp/cli.py b/tmuxp/cli.py index 22a8b2289a..3751588ac3 100644 --- a/tmuxp/cli.py +++ b/tmuxp/cli.py @@ -265,7 +265,6 @@ def subcommand_load(args): if '.' == args.config: if config.in_cwd(): configfile = config.in_cwd()[0] - print configfile else: print('No tmuxp configs found in current directory.') else: @@ -398,7 +397,7 @@ def subcommand_convert(args): buf = open(newfile, 'w') buf.write(newconfig) buf.close() - print ('written new config to %s' % (newfile)) + print('written new config to %s' % (newfile)) elif 'yaml' in ext: if prompt_bool('convert to <%s> to json?' % (fullfile)): configparser = kaptan.Kaptan() @@ -410,7 +409,7 @@ def subcommand_convert(args): buf = open(newfile, 'w') buf.write(newconfig) buf.close() - print ('written new config to <%s>.' % (newfile)) + print('written new config to <%s>.' % (newfile)) def subcommand_attach_session(args):