From 964ebb82653fa2cab0de942499d99d7c6d7c21f5 Mon Sep 17 00:00:00 2001 From: evilhero Date: Mon, 18 Apr 2016 13:40:11 -0400 Subject: [PATCH] FIX: When peforming an import on a given series, would error attempting to log an integer value improperly --- mylar/webserve.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/mylar/webserve.py b/mylar/webserve.py index fd5dc98f..313e75b5 100755 --- a/mylar/webserve.py +++ b/mylar/webserve.py @@ -3272,13 +3272,12 @@ class WebInterface(object): #figure out # of issues and the year range allowable logger.info('yearTOP: ' + str(yearTOP)) - logger.info('minISSUE: ' + minISSUE) logger.info('yearRANGE: ' + str(yearRANGE)) if starttheyear is None: if all([yearTOP != None, yearTOP != 'None']): if int(str(yearTOP)) > 0: minni = helpers.issuedigits(minISSUE) - logger.info(minni) + #logger.info(minni) if minni < 1 or minni > 999999999: maxyear = int(str(yearTOP)) else: @@ -3320,7 +3319,6 @@ class WebInterface(object): #we now need to cycle through the results until we get a hit on both dynamicname AND year (~count of issues possibly). logger.fdebug('[' + str(len(sresults)) + '] search results') search_matches = [] - for results in sresults: rsn = filechecker.FileChecker() rsn_run = rsn.dynamic_replace(results['name'])