File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,9 @@ Here you can find the recent changes to tmuxp.
6
6
2013-10-28
7
7
----------
8
8
9
- - [cli] fix ``tmuxp load . ``
9
+ - [cli] fix ``tmuxp load .`` fixed
10
+ - [cli] fix ``tmuxp convert <file>`` fixed.
11
+ - [internal] `pep257` fixes.
10
12
11
13
2013-10-27
12
14
----------
@@ -258,3 +260,4 @@ initial
258
260
.. _tmuxinator: https://github.com/aziz/tmuxinator
259
261
.. _teamocil: https://github.com/remiprev/teamocil
260
262
.. _argcomplete: https://github.com/kislyuk/argcomplete
263
+ .. _pep257: http://www.python.org/dev/peps/pep-0257/
Original file line number Diff line number Diff line change 20
20
21
21
import logging
22
22
23
- __version__ = '0.0.18 '
23
+ __version__ = '0.0.19 '
Original file line number Diff line number Diff line change @@ -265,7 +265,6 @@ def subcommand_load(args):
265
265
if '.' == args .config :
266
266
if config .in_cwd ():
267
267
configfile = config .in_cwd ()[0 ]
268
- print configfile
269
268
else :
270
269
print ('No tmuxp configs found in current directory.' )
271
270
else :
@@ -398,7 +397,7 @@ def subcommand_convert(args):
398
397
buf = open (newfile , 'w' )
399
398
buf .write (newconfig )
400
399
buf .close ()
401
- print ('written new config to %s' % (newfile ))
400
+ print ('written new config to %s' % (newfile ))
402
401
elif 'yaml' in ext :
403
402
if prompt_bool ('convert to <%s> to json?' % (fullfile )):
404
403
configparser = kaptan .Kaptan ()
@@ -410,7 +409,7 @@ def subcommand_convert(args):
410
409
buf = open (newfile , 'w' )
411
410
buf .write (newconfig )
412
411
buf .close ()
413
- print ('written new config to <%s>.' % (newfile ))
412
+ print ('written new config to <%s>.' % (newfile ))
414
413
415
414
416
415
def subcommand_attach_session (args ):
You can’t perform that action at this time.
0 commit comments