diff --git a/caliGraph.py b/caliGraph.py index 51a68bf..8d4440a 100755 --- a/caliGraph.py +++ b/caliGraph.py @@ -483,7 +483,8 @@ def runPagerank(G): try: scores = nx.pagerank(G=G) except nx.exception.PowerIterationFailedConvergence: - print('[!] Could not calculate pagerank-scores: power iteration of the eigenvector calculation did not converge') + print('[!] Could not calculate pagerank-scores: Power iteration of the eigenvector calculation did not converge') + print('[ ] Recommendations will be of slighly lower quality') scores = {} for n in list(G.nodes): G.nodes[n]['pagerank_score'] = scores[n] if n in scores else 0