Skip to content

Commit 7694d8c

Browse files
author
Saurabh Kumar
committed
docs update
1 parent 3a16c1c commit 7694d8c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
python-dotenv | |Build Status| |Coverage Status| |PyPI version| |PyPI|
1212
======================================================================
1313

14-
Reads the key,value pair from ``.env`` and adds them to environment
15-
variable. It is great of managing app settings during development and in
14+
Reads the key,value pair from ``.env`` file and adds them to environment
15+
variable. It is great for managing app settings during development and in
1616
production using `12-factor <http://12factor.net/>`__ principles.
1717

1818
Do one thing, do it well!

dotenv/cli.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def list(ctx):
2727
file = ctx.obj['FILE']
2828
dotenv_as_dict = dotenv_values(file)
2929
for k, v in dotenv_as_dict.items():
30-
click.echo('%s="%s"' % (k, v))
30+
click.echo('%s=%s' % (k, v))
3131

3232

3333
@cli.command()
@@ -40,7 +40,7 @@ def set(ctx, key, value):
4040
quote = ctx.obj['QUOTE']
4141
success, key, value = set_key(file, key, value, quote)
4242
if success:
43-
click.echo('%s="%s"' % (key, value))
43+
click.echo('%s=%s' % (key, value))
4444
else:
4545
exit(1)
4646

@@ -53,7 +53,7 @@ def get(ctx, key):
5353
file = ctx.obj['FILE']
5454
stored_value = get_key(file, key)
5555
if stored_value:
56-
click.echo('%s="%s"' % (key, stored_value))
56+
click.echo('%s=%s' % (key, stored_value))
5757
else:
5858
exit(1)
5959

0 commit comments

Comments
 (0)