1
0
mirror of https://github.com/httpie/cli.git synced 2025-08-10 22:42:05 +02:00

Fixed tox.ini and improved tests and CONTRIBUTING.txt

This commit is contained in:
Jakub Roztocil
2016-01-02 14:07:00 -03:00
parent 34c6958dc8
commit 84b81c00ea
5 changed files with 64 additions and 38 deletions

View File

@@ -6,11 +6,11 @@ from httpie import __version__
from httpie.compat import is_windows
DEFAULT_CONFIG_DIR = os.environ.get(
DEFAULT_CONFIG_DIR = str(os.environ.get(
'HTTPIE_CONFIG_DIR',
os.path.expanduser('~/.httpie') if not is_windows else
os.path.expandvars(r'%APPDATA%\\httpie')
)
))
class BaseConfigDict(dict):