ansible-vars 1.0.5__tar.gz → 1.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ansible_vars-1.0.5 → ansible_vars-1.0.6}/PKG-INFO +1 -1
- {ansible_vars-1.0.5 → ansible_vars-1.0.6}/pyproject.toml +1 -1
- {ansible_vars-1.0.5 → ansible_vars-1.0.6}/src/ansible_vars/cli.py +2 -2
- {ansible_vars-1.0.5 → ansible_vars-1.0.6}/.gitignore +0 -0
- {ansible_vars-1.0.5 → ansible_vars-1.0.6}/LICENSE +0 -0
- {ansible_vars-1.0.5 → ansible_vars-1.0.6}/README.md +0 -0
- {ansible_vars-1.0.5 → ansible_vars-1.0.6}/src/ansible_vars/__init__.py +0 -0
- {ansible_vars-1.0.5 → ansible_vars-1.0.6}/src/ansible_vars/constants.py +0 -0
- {ansible_vars-1.0.5 → ansible_vars-1.0.6}/src/ansible_vars/errors.py +0 -0
- {ansible_vars-1.0.5 → ansible_vars-1.0.6}/src/ansible_vars/util.py +0 -0
- {ansible_vars-1.0.5 → ansible_vars-1.0.6}/src/ansible_vars/vault.py +0 -0
- {ansible_vars-1.0.5 → ansible_vars-1.0.6}/src/ansible_vars/vault_crypt.py +0 -0
@@ -4,7 +4,7 @@
|
|
4
4
|
# CLI entry point for ansible-vars
|
5
5
|
|
6
6
|
# Standard library imports
|
7
|
-
import
|
7
|
+
import os, re, sys, json, atexit, signal
|
8
8
|
from glob import glob
|
9
9
|
from time import sleep
|
10
10
|
from enum import StrEnum
|
@@ -195,7 +195,7 @@ Deletes a node from a vault if it exists.
|
|
195
195
|
}
|
196
196
|
|
197
197
|
DEFAULT_EDITOR: str = os.environ.get('EDITOR', 'notepad.exe' if os.name == 'nt' else 'vi')
|
198
|
-
DEFAULT_COLOR_MODE: str = os.environ.get('AV_COLOR_MODE', '256' if
|
198
|
+
DEFAULT_COLOR_MODE: str = os.environ.get('AV_COLOR_MODE', '256' if sys.stdout.isatty() else 'none')
|
199
199
|
DEFAULT_TEMP_DIR: str = os.environ.get('AV_TEMP_DIR', gettempdir())
|
200
200
|
DEFAULT_CREATE_PLAIN: bool = os.environ.get('AV_CREATE_PLAIN', 'no').lower() in [ 'yes', 'y', 'true', 't', '1' ]
|
201
201
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|