From 8e9fccdbbcd68f61ffea9c128a352492e222d2f7 Mon Sep 17 00:00:00 2001 From: beville Date: Sat, 13 Apr 2013 05:30:53 +0000 Subject: [PATCH] removed line feed from prints git-svn-id: http://comictagger.googlecode.com/svn/trunk@600 6c5673fe-1810-88d6-992b-cd32ca31540c --- comictaggerlib/comicvinetalker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comictaggerlib/comicvinetalker.py b/comictaggerlib/comicvinetalker.py index ecb8d6a..4b31b8e 100644 --- a/comictaggerlib/comicvinetalker.py +++ b/comictaggerlib/comicvinetalker.py @@ -238,14 +238,14 @@ class ComicVineTalker(QObject): total_result_count = cv_response['number_of_total_results'] #print "ATB total_result_count", total_result_count - #print "ATB Found {0} of {1} results\n".format( cv_response['number_of_page_results'], cv_response['number_of_total_results']) + #print "ATB Found {0} of {1} results".format( cv_response['number_of_page_results'], cv_response['number_of_total_results']) volume_issues_result = cv_response['results'] page = 1 offset = 0 # see if we need to keep asking for more pages... while ( current_result_count < total_result_count ): - #print "ATB getting another page of issue results {0} of {1}...\n".format( current_result_count, total_result_count) + #print "ATB getting another page of issue results {0} of {1}...".format( current_result_count, total_result_count) page += 1 offset += cv_response['number_of_page_results']