Skip to content

Commit

Permalink
Merge pull request #1769 from freakboy3742/newline-cleanup
Browse files Browse the repository at this point in the history
Normalize usage of newlines.
  • Loading branch information
rmartin16 authored May 3, 2024
2 parents 739012d + a687b39 commit a10e379
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions changes/1769.misc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The usage of newlines in a message was modified to be consistent with line splitting.
6 changes: 4 additions & 2 deletions src/briefcase/commands/create.py
Original file line number Diff line number Diff line change
Expand Up @@ -688,12 +688,14 @@ def install_app_resources(self, app: AppConfig):

# Briefcase v0.3.18 - splash screens deprecated.
if getattr(app, "splash", None):
self.logger.warning()
self.logger.warning(
"\nSplash screens are now configured based on the icon. "
"The splash configuration will be ignored.\n"
"Splash screens are now configured based on the icon. "
"The splash configuration will be ignored."
)

for extension, doctype in self.document_type_icon_targets(app).items():
self.logger.info()
for size, target in doctype.items():
self.install_image(
f"icon for .{extension} documents",
Expand Down

0 comments on commit a10e379

Please sign in to comment.