Skip to content

Commit

Permalink
Merge pull request #9 from J3RN/fix-fstrings
Browse files Browse the repository at this point in the history
Fix fstrings for multiple adapter errors
  • Loading branch information
x2es authored Jan 27, 2023
2 parents 4ccd5da + 49f64e2 commit e3a98df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bt_dualboot/bt_sync_manager/bt_sync_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def _index_devices(self):
if len(problem_devices_macs) > 0:
# fmt: off
print(
"WARNING: Following devices paired on Linux for multiple BT-adapters: {", ".join(problem_devices_macs)}",
f"WARNING: Following devices paired on Linux for multiple BT-adapters: {', '.join(problem_devices_macs)}",
file=sys.stderr
)
# fmt: on
Expand All @@ -87,7 +87,7 @@ def _index_devices(self):
if len(problem_devices_macs) > 0:
# fmt: off
print(
"WARNING: Following devices paired on Windows for multiple BT-adapters: {", ".join(problem_devices_macs)}",
f"WARNING: Following devices paired on Windows for multiple BT-adapters: {', '.join(problem_devices_macs)}",
file=sys.stderr
)
# fmt: on
Expand Down

0 comments on commit e3a98df

Please sign in to comment.