summaryrefslogtreecommitdiff
path: root/src/db.rs
diff options
context:
space:
mode:
authorfxqnlr <[email protected]>2022-12-04 20:32:51 +0100
committerfxqnlr <[email protected]>2022-12-04 20:32:51 +0100
commit2ec20c50e7c02d82b248835988df040bd266b659 (patch)
treea8306a2c07438068dcd190762d3f77e68064b448 /src/db.rs
parentf3f746be6c1c19c93d440bbc210dec631e2b42bb (diff)
downloadmodlist-2ec20c50e7c02d82b248835988df040bd266b659.tar
modlist-2ec20c50e7c02d82b248835988df040bd266b659.tar.gz
modlist-2ec20c50e7c02d82b248835988df040bd266b659.zip
fully added mod remove; fixed update from NONE
Diffstat (limited to 'src/db.rs')
-rw-r--r--src/db.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/db.rs b/src/db.rs
index 542c162..9d862d6 100644
--- a/src/db.rs
+++ b/src/db.rs
@@ -365,7 +365,6 @@ pub fn lists_get_all_ids(config: Cfg) -> Result<Vec<String>, Box<dyn std::error:
365 })?; 365 })?;
366 366
367 for id in id_iter { 367 for id in id_iter {
368 println!("Found id {:?}", id.as_ref().unwrap());
369 list_ids.push(id?) 368 list_ids.push(id?)
370 }; 369 };
371 370