From: Forrest Voight Date: Sun, 30 Sep 2012 00:57:26 +0000 (-0400) Subject: reinforce how share loading exception is harmless X-Git-Tag: 8.0~22 X-Git-Url: https://git.novaco.in/?p=p2pool.git;a=commitdiff_plain;h=10d85be481a144a5a2d7a3adf1a755b3a2dd941c reinforce how share loading exception is harmless --- diff --git a/p2pool/data.py b/p2pool/data.py index 4787f30..a114462 100644 --- a/p2pool/data.py +++ b/p2pool/data.py @@ -595,7 +595,7 @@ class ShareStore(object): else: raise NotImplementedError("share type %i" % (type_id,)) except Exception: - log.err(None, "Error while reading saved shares, continuing where left off:") + log.err(None, "HARMLESS error while reading saved shares, continuing where left off:") self.known = known self.known_desired = dict((k, (set(a), set(b))) for k, (a, b) in known.iteritems())