From 8fda656570efe1ebbf6fcf0a28a9ad8ba30dac8d Mon Sep 17 00:00:00 2001 From: Jeremy Carbaugh Date: Sat, 2 Nov 2013 19:07:03 -0400 Subject: [PATCH] Add __future__ import for print function to make demo output correctly with Python 2 --- webfinger.py | 1 + 1 file changed, 1 insertion(+) diff --git a/webfinger.py b/webfinger.py index ff4e606..08b62ab 100644 --- a/webfinger.py +++ b/webfinger.py @@ -1,3 +1,4 @@ +from __future__ import print_function import logging __version__ = '1.0'