From 4b7c318aad84b5274f11e7f82da84241314baed3 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 3 Jul 2016 12:58:50 -0400 Subject: Python 3k compat --- steuermann/dot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'steuermann/dot.py') diff --git a/steuermann/dot.py b/steuermann/dot.py index e4d7a1f..eb9f3b4 100644 --- a/steuermann/dot.py +++ b/steuermann/dot.py @@ -11,7 +11,7 @@ Requires graphviz and pygraphviz if len(sys.argv) < 2: - print 'ERROR - missing argument(s)' + print('ERROR - missing argument(s)') sys.exit(1) sm_files = sys.argv[1:] -- cgit