From 150dcd775b1fe9db6e6127b22b6804c34c118832 Mon Sep 17 00:00:00 2001 From: evilhero Date: Sat, 20 Oct 2012 03:09:15 -0400 Subject: [PATCH] fix for issue status reverting back to default status after ReCheck Files selected regardless of previous status --- mylar/updater.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mylar/updater.py b/mylar/updater.py index 71e28ebd..d3900383 100755 --- a/mylar/updater.py +++ b/mylar/updater.py @@ -157,6 +157,7 @@ def forceRescan(ComicID): except IndexError: break int_iss = reiss['Int_IssueNumber'] + old_status = reiss['Status'] fn = 0 haveissue = "no" while (fn < fccnt): @@ -196,7 +197,10 @@ def forceRescan(ComicID): if mylar.AUTOWANT_ALL: issStatus = "Wanted" else: - issStatus = "Skipped" + if old_status == "Wanted": + issStatus = "Wanted" + else: + issStatus = "Skipped" elif haveissue == "yes": issStatus = "Downloaded" controlValueDict = {"IssueID": reiss['IssueID']}