Skip to content

Commit

Permalink
Print exists info in inspect
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed Mar 17, 2024
1 parent 1d2b90b commit 377c92e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plextraktsync/commands/inspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def inspect_media(plex_id: PlexId):

print("Parts:")
for index, part in enumerate(pm.parts, start=1):
print(f" Part {index}: [link=file://{quote_plus(part.file)}]{escape(part.file)}[/link] {part.size} bytes")
print(f" Part {index} (exists: {part.exists}): [link=file://{quote_plus(part.file)}]{escape(part.file)}[/link] {part.size} bytes")

print("Markers:")
for marker in pm.markers:
Expand Down

0 comments on commit 377c92e

Please sign in to comment.