File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2121from .debug_info import command_debug_info
2222from .edit import command_edit
2323from .freeze import command_freeze
24- from .import_config import import_config_cmd
24+ from .import_config import command_import
2525from .load import command_load
2626from .shell import command_shell
2727from .utils import tmuxp_echo
@@ -74,4 +74,4 @@ def startup(config_dir):
7474cli .add_command (command_ls )
7575cli .add_command (command_freeze )
7676cli .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):
5353
5454
5555@click .group (name = "import" )
56- def import_config_cmd ():
56+ def command_import ():
5757 """Import a teamocil/tmuxinator config."""
5858
5959
@@ -107,7 +107,7 @@ def import_config(configfile, importfunc):
107107 sys .exit ()
108108
109109
110- @import_config_cmd .command (
110+ @command_import .command (
111111 name = "tmuxinator" , short_help = "Convert and import a tmuxinator config."
112112)
113113@click .argument (
@@ -157,7 +157,7 @@ def command_convert(confirmed, config):
157157 print ("New config saved to <%s>." % newfile )
158158
159159
160- @import_config_cmd .command (
160+ @command_import .command (
161161 name = "teamocil" , short_help = "Convert and import a teamocil config."
162162)
163163@click .argument (
You can’t perform that action at this time.
0 commit comments