File tree Expand file tree Collapse file tree 3 files changed +1
-9
lines changed Expand file tree Collapse file tree 3 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -915,7 +915,6 @@ def get_parser():
915
915
916
916
import_tmuxinator .set_defaults (callback = command_import_tmuxinator )
917
917
918
- # http://stackoverflow.com/questions/8521612/argparse-optional-subparser
919
918
parser .add_argument (
920
919
'-v' , '--version' , action = 'version' ,
921
920
version = 'tmuxp %s' % __version__ ,
Original file line number Diff line number Diff line change 16
16
17
17
class TmuxpException (Exception ):
18
18
19
- """Base Exception for Tmuxp Errors.
20
-
21
- Also for Python 2.6 compat:
22
- http://stackoverflow.com/a/6029838
23
-
24
- """
19
+ """Base Exception for Tmuxp Errors."""
25
20
26
21
27
22
class TmuxSessionExists (TmuxpException ):
Original file line number Diff line number Diff line change @@ -207,7 +207,6 @@ def _list_windows(self):
207
207
w ['window_id' ] = w ['window_name' ]
208
208
209
209
if self ._windows :
210
- # http://stackoverflow.com/a/14465359
211
210
self ._windows [:] = []
212
211
213
212
self ._windows .extend (windows )
@@ -268,7 +267,6 @@ def _list_panes(self):
268
267
]
269
268
270
269
if self ._panes :
271
- # http://stackoverflow.com/a/14465359
272
270
self ._panes [:] = []
273
271
274
272
self ._panes .extend (panes )
You can’t perform that action at this time.
0 commit comments