diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-11-23 17:47:12 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-11-23 17:47:12 +0100 |
commit | 6888c847abe79856772e484a3342945e6e280f72 (patch) | |
tree | 8bf9aee960bccc163c8be07cda9f71f09641c889 | |
parent | 3b6266b4bb6e7229557c2e68d9336fc08ad2b282 (diff) | |
download | fuzzycat-6888c847abe79856772e484a3342945e6e280f72.tar.gz fuzzycat-6888c847abe79856772e484a3342945e6e280f72.zip |
log warning to stderr
-rw-r--r-- | fuzzycat/cluster.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzzycat/cluster.py b/fuzzycat/cluster.py index 7d418ac..2b01657 100644 --- a/fuzzycat/cluster.py +++ b/fuzzycat/cluster.py @@ -443,7 +443,7 @@ class Cluster: payload = [] for i, line in enumerate(g): if i > 0 and i == self.max_cluster_size: - print('max cluster size cut off for: {}'.format(k)) + print('max cluster size cut off for: {}'.format(k), file=sys.stderr) break # XXX: This is a bit too much "serde", get rid of this. fields = line.split("\t") |