Skip to content

Commit f779439

Browse files
tonyjoseph-flinn
authored andcommitted
Typo fix
1 parent f63340a commit f779439

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/fixtures/pluginsystem/partials/tmuxp_version_fail.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class TmuxpVersionFailMinPlugin(MyTestTmuxpPluginInterface):
55
def __init__(self):
66
config = {
7-
'plugin_name': 'tmuxp-min-verion-fail',
7+
'plugin_name': 'tmuxp-min-version-fail',
88
'tmuxp_min_version': '1.6.0',
99
'tmuxp_version': '1.5.6',
1010
}
@@ -14,7 +14,7 @@ def __init__(self):
1414
class TmuxpVersionFailMaxPlugin(MyTestTmuxpPluginInterface):
1515
def __init__(self):
1616
config = {
17-
'plugin_name': 'tmuxp-max-verion-fail',
17+
'plugin_name': 'tmuxp-max-version-fail',
1818
'tmuxp_max_version': '2.0.0',
1919
'tmuxp_version': '2.5',
2020
}
@@ -24,7 +24,7 @@ def __init__(self):
2424
class TmuxpVersionFailIncompatiblePlugin(MyTestTmuxpPluginInterface):
2525
def __init__(self):
2626
config = {
27-
'plugin_name': 'tmuxp-incompatible-verion-fail',
27+
'plugin_name': 'tmuxp-incompatible-version-fail',
2828
'tmuxp_version_incompatible': ['1.5.0'],
2929
'tmuxp_version': '1.5.0',
3030
}

tmuxp/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"""
88
from __future__ import absolute_import
99

10-
import logging
1110
import importlib
11+
import logging
1212
import os
1313
import sys
1414

@@ -394,7 +394,7 @@ def load_plugins(sconf):
394394
):
395395
click.echo(
396396
click.style('[Not Skipping] ', fg='yellow')
397-
+ 'Plugin verions constraint not met. Exiting...'
397+
+ 'Plugin versions constraint not met. Exiting...'
398398
)
399399
sys.exit(1)
400400
except Exception as error:

0 commit comments

Comments
 (0)