Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add punctuation to datetime formatting.
  • Loading branch information
freakboy3742 committed Dec 9, 2024
commit 0c0d1fc334c6c2dd7d23f1cd678ec33570af9d6d
2 changes: 1 addition & 1 deletion iOS/testbed/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ async def find_device(initial_devices):
await asyncio.sleep(1)
elif len(new_devices) == 1:
udid = new_devices.pop()
print(f"{datetime.now():%Y%m%d %H%M%S}: New test simulator detected")
print(f"{datetime.now():%Y-%m-%d %H:%M:%S}: New test simulator detected")
print(f"UDID: {udid}")
return udid
else:
Expand Down