File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
tests/fixtures/pluginsystem/partials Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 4
4
class TmuxpVersionFailMinPlugin (MyTestTmuxpPluginInterface ):
5
5
def __init__ (self ):
6
6
config = {
7
- 'plugin_name' : 'tmuxp-min-verion -fail' ,
7
+ 'plugin_name' : 'tmuxp-min-version -fail' ,
8
8
'tmuxp_min_version' : '1.6.0' ,
9
9
'tmuxp_version' : '1.5.6' ,
10
10
}
@@ -14,7 +14,7 @@ def __init__(self):
14
14
class TmuxpVersionFailMaxPlugin (MyTestTmuxpPluginInterface ):
15
15
def __init__ (self ):
16
16
config = {
17
- 'plugin_name' : 'tmuxp-max-verion -fail' ,
17
+ 'plugin_name' : 'tmuxp-max-version -fail' ,
18
18
'tmuxp_max_version' : '2.0.0' ,
19
19
'tmuxp_version' : '2.5' ,
20
20
}
@@ -24,7 +24,7 @@ def __init__(self):
24
24
class TmuxpVersionFailIncompatiblePlugin (MyTestTmuxpPluginInterface ):
25
25
def __init__ (self ):
26
26
config = {
27
- 'plugin_name' : 'tmuxp-incompatible-verion -fail' ,
27
+ 'plugin_name' : 'tmuxp-incompatible-version -fail' ,
28
28
'tmuxp_version_incompatible' : ['1.5.0' ],
29
29
'tmuxp_version' : '1.5.0' ,
30
30
}
Original file line number Diff line number Diff line change 7
7
"""
8
8
from __future__ import absolute_import
9
9
10
- import logging
11
10
import importlib
11
+ import logging
12
12
import os
13
13
import sys
14
14
@@ -394,7 +394,7 @@ def load_plugins(sconf):
394
394
):
395
395
click .echo (
396
396
click .style ('[Not Skipping] ' , fg = 'yellow' )
397
- + 'Plugin verions constraint not met. Exiting...'
397
+ + 'Plugin versions constraint not met. Exiting...'
398
398
)
399
399
sys .exit (1 )
400
400
except Exception as error :
You can’t perform that action at this time.
0 commit comments