Skip to content
Snippets Groups Projects
Commit 061514a1 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Drop an unused function in iso9600.py

parent 00366fe7
No related branches found
No related tags found
No related merge requests found
Pipeline #803437 passed with warnings
......@@ -24,27 +24,10 @@ from diffoscope.tools import tool_required
from diffoscope.difference import Difference
from .utils.file import File
from .utils.command import Command, our_check_output
from .utils.command import Command
from .utils.libarchive import LibarchiveContainerWithFilelist
@tool_required("isoinfo")
def get_iso9660_names(path):
return (
our_check_output(
(
"isoinfo",
"-R", # Always use RockRidge for names
"-f",
"-i",
path,
),
)
.strip()
.split("\n")
)
class ISO9660PVD(Command):
@tool_required("isoinfo")
def cmdline(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment