Skip to content

Commit 1cb1a70

Browse files
committed
Stripped dashes from skip init warning msg
1 parent 9e30bce commit 1cb1a70

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

  • remove-json-keys/src/remove_json_keys/lib
  • translate-messages/src/translate_messages/lib

remove-json-keys/src/remove_json_keys/lib/init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def config_file(cli):
1414
if cli.config.force:
1515
log.info(f'{cli.msgs.log_OVERWRITING_CONFIG_AT} {config_path}...')
1616
else:
17-
log.warn(f'{cli.msgs.warn_CONFIG_EXISTS_AT} {config_path}. {cli.msgs.log_SKIPPING} --init.')
17+
log.warn(f'{cli.msgs.warn_CONFIG_EXISTS_AT} {config_path}. {cli.msgs.log_SKIPPING} init.')
1818
log.tip(f'{cli.msgs.tip_PASS_FORCE_TO_OVERWRITE}.')
1919
return
2020
cli.config_filename = f'.{cli.short_name}.config.json5'

translate-messages/src/translate_messages/lib/init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def config_file(cli):
1515
if cli.config.force:
1616
log.info(f'{cli.msgs.log_OVERWRITING_CONFIG_AT} {config_path}...')
1717
else:
18-
log.warn(f'{cli.msgs.warn_CONFIG_EXISTS_AT} {config_path}. {cli.msgs.log_SKIPPING} --init.')
18+
log.warn(f'{cli.msgs.warn_CONFIG_EXISTS_AT} {config_path}. {cli.msgs.log_SKIPPING} init.')
1919
log.tip(f'{cli.msgs.tip_PASS_FORCE_TO_OVERWRITE}.')
2020
return
2121
cli.config_filename = f'.{cli.short_name}.config.json5'

0 commit comments

Comments
 (0)