summaryrefslogtreecommitdiffstats
path: root/src/core/src/process/artifact.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/src/process/artifact.rs')
-rw-r--r--src/core/src/process/artifact.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/src/process/artifact.rs b/src/core/src/process/artifact.rs
index 18bb89e..ab118d5 100644
--- a/src/core/src/process/artifact.rs
+++ b/src/core/src/process/artifact.rs
@@ -26,7 +26,7 @@ impl Debug for Artifact {
match *self {
Self::ChangeState(state) => write!(f, "ChangeState({state:?})"),
Self::EnqueueResize => write!(f, "EnqueueResize"),
- Self::Error(ref err, state) => write!(f, "Error({err:?}, {state:?})"),
+ Self::Error(ref err, state) => write!(f, "Error({err}, {state:?})"),
Self::Event(event) => write!(f, "Event({event:?})"),
Self::ExitStatus(status) => write!(f, "ExitStatus({status:?})"),
Self::ExternalCommand((ref command, ref args)) => write!(f, "ExternalCommand({command:?}, {args:?})"),