Account for the instance of submodules.pack.Packer #104184
@ -165,14 +165,11 @@ class PackThread(threading.Thread):
|
|||||||
log.debug("done")
|
log.debug("done")
|
||||||
self._set_bat_status("DONE")
|
self._set_bat_status("DONE")
|
||||||
|
|
||||||
if isinstance(self.packer, submodules.pack.Packer):
|
msg = MsgDone(
|
||||||
dr.sybren marked this conversation as resolved
|
|||||||
msg = MsgDone(self.packer.output_path, self.packer.missing_files)
|
self.packer.output_path,
|
||||||
else:
|
self.packer.missing_files,
|
||||||
msg = MsgDone(
|
getattr(self.packer, "actual_checkout_path", None),
|
||||||
self.packer.output_path,
|
)
|
||||||
self.packer.missing_files,
|
|
||||||
self.packer.actual_checkout_path,
|
|
||||||
)
|
|
||||||
self.queue.put(msg)
|
self.queue.put(msg)
|
||||||
|
|
||||||
def _set_bat_status(self, status: str) -> None:
|
def _set_bat_status(self, status: str) -> None:
|
||||||
|
Loading…
Reference in New Issue
Block a user
I think the code can be simplified to:
That way the entire
if
can go away, and it's no longer specific to a particularPacker
implementation.