File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 21
21
from .debug_info import command_debug_info
22
22
from .edit import command_edit
23
23
from .freeze import command_freeze
24
- from .import_config import import_config_cmd
24
+ from .import_config import command_import
25
25
from .load import command_load
26
26
from .shell import command_shell
27
27
from .utils import tmuxp_echo
@@ -74,4 +74,4 @@ def startup(config_dir):
74
74
cli .add_command (command_ls )
75
75
cli .add_command (command_freeze )
76
76
cli .add_command (command_shell )
77
- cli .add_command (import_config_cmd )
77
+ cli .add_command (command_import )
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ def _resolve_path_no_overwrite(config):
53
53
54
54
55
55
@click .group (name = "import" )
56
- def import_config_cmd ():
56
+ def command_import ():
57
57
"""Import a teamocil/tmuxinator config."""
58
58
59
59
@@ -107,7 +107,7 @@ def import_config(configfile, importfunc):
107
107
sys .exit ()
108
108
109
109
110
- @import_config_cmd .command (
110
+ @command_import .command (
111
111
name = "tmuxinator" , short_help = "Convert and import a tmuxinator config."
112
112
)
113
113
@click .argument (
@@ -157,7 +157,7 @@ def command_convert(confirmed, config):
157
157
print ("New config saved to <%s>." % newfile )
158
158
159
159
160
- @import_config_cmd .command (
160
+ @command_import .command (
161
161
name = "teamocil" , short_help = "Convert and import a teamocil config."
162
162
)
163
163
@click .argument (
You can’t perform that action at this time.
0 commit comments