mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #43299 from twangboy/win_fix_netapi_cherrypy
Fix `unit.netapi.rest_cherrypy.test_tools` for Windows
This commit is contained in:
commit
618b221895
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ try:
|
|||
except ImportError as exc:
|
||||
cpy_error = exc
|
||||
|
||||
__virtualname__ = os.path.abspath(__file__).rsplit('/')[-2] or 'rest_cherrypy'
|
||||
__virtualname__ = os.path.abspath(__file__).rsplit(os.sep)[-2] or 'rest_cherrypy'
|
||||
|
||||
logger = logging.getLogger(__virtualname__)
|
||||
cpy_min = '3.2.2'
|
||||
|
|
Loading…
Add table
Reference in a new issue