Skip to content

Commit faf9492

Browse files
author
Saurabh Kumar
committed
fix(py3): fix syntax error for python3
1 parent d1cb2b5 commit faf9492

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dotenv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def flatten_and_write(dotenv_path, dotenv_as_dict):
130130

131131
if not args.action:
132132
with open(args.file_path) as f:
133-
print f.read()
133+
print(f.read())
134134
exit(0)
135135
elif args.action == "get":
136136
stored_value = get_key(args.file_path, args.key)

0 commit comments

Comments
 (0)