Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion divio_cli/localdev/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,7 @@ def develop_package(package, no_rebuild=False):
requirements_file = os.path.join(project_home, "requirements.in")
# open file with 'universal newline support'
# https://docs.python.org/2/library/functions.html#open
with open(requirements_file, "rU") as fh:
with open(requirements_file, "r") as fh:
addons = fh.readlines()

replaced = False
Expand Down