We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11602a4 commit 7de6a7cCopy full SHA for 7de6a7c
Cargo.toml
@@ -3,7 +3,7 @@
3
[package]
4
name = "aeternum"
5
edition = "2021"
6
-version = "0.1.0-alpha.1"
+version = "0.1.0-alpha.2"
7
description = "A simple and minimal upscaler built in rust"
8
authors = ["Ananas <ananas@ananas.moe>"]
9
license = "GPL-3.0"
src/upscale.rs
@@ -113,11 +113,7 @@ impl Upscale {
113
upscaling_arc: Arc::new(false.into())
114
})
115
},
116
- Err(err) => {
117
- let err_mesage = err.to_string();
118
-
119
- Err(Error::UpscaylNotInPath(Some(err_mesage)))
120
- }
+ Err(err) => Err(Error::UpscaylNotInPath(Some(err.to_string())))
121
}
122
123
0 commit comments