From 116c5fce99b0a9de01a6a16f2e01e011e9871934 Mon Sep 17 00:00:00 2001 From: Vineet Date: Sun, 22 Jun 2014 22:51:10 +0530 Subject: [PATCH] Fix cyclic deps warnings output Making it consistent with confusing deps --- pipdeptree.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pipdeptree.py b/pipdeptree.py index 139b1f3..40c60fb 100644 --- a/pipdeptree.py +++ b/pipdeptree.py @@ -231,9 +231,10 @@ def main(): cyclic = cyclic_deps(pkgs, pkg_index) if cyclic: - print('Warning!! Cyclic dependencies found:', file=sys.stderr) + print('Warning!!! Cyclic dependencies found:', file=sys.stderr) for xs in cyclic: - print('- {0}'.format(xs)) + print('- {0}'.format(xs), file=sys.stderr) + print('-'*72, file=sys.stderr) if args.freeze: top_pkg_str, non_top_pkg_str = top_pkg_src, non_top_pkg_src