Skip to content
Open
Show file tree
Hide file tree
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 pyup/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def update_config(self, d):
@staticmethod
def generate_config_file(config):
return "\n\n".join([
"# autogenerated pyup.io config file \n# see https://pyup.io/docs/configuration/ "
"# autogenerated pyup.io config file\n# see https://pyup.io/docs/configuration/ "
"for all available options",
yaml.safe_dump(config, default_flow_style=False)
])
Expand Down
2 changes: 1 addition & 1 deletion tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def test_generate_config(self):

self.assertEqual(
result,
"# autogenerated pyup.io config file \n# see https://pyup.io/docs/configura" + \
"# autogenerated pyup.io config file\n# see https://pyup.io/docs/configura" + \
"tion/ for all available options\n\nupdate: insecure\n"
)

Expand Down