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 44class 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):
1414class 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):
2424class 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 }
Original file line number Diff line number Diff line change 77"""
88from __future__ import absolute_import
99
10- import logging
1110import importlib
11+ import logging
1212import os
1313import 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 :
You can’t perform that action at this time.
0 commit comments