Skip to content

Commit

Permalink
Fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
merwok committed Jan 16, 2017
1 parent 4c5b61c commit f879413
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dotenv.py
Expand Up @@ -53,7 +53,8 @@ def read_dotenv(dotenv=None):
for k, v in parse_dotenv(f.read()).items():
os.environ.setdefault(k, v)
else:
warnings.warn("Not reading {0} - it doesn't exist.".format(dotenv), stacklevel=2)
warnings.warn("Not reading {0} - it doesn't exist.".format(dotenv),
stacklevel=2)


def parse_dotenv(content):
Expand Down

0 comments on commit f879413

Please sign in to comment.