From 3941489457db86710b770bc120409d6947904afa Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Fri, 21 Feb 2014 14:50:09 -0500 Subject: [PATCH] Use new print syntax in cache --- tweepy/cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweepy/cache.py b/tweepy/cache.py index 25564a3..a50a349 100644 --- a/tweepy/cache.py +++ b/tweepy/cache.py @@ -155,7 +155,7 @@ class FileCache(Cache): self._lock_file = self._lock_file_win32 self._unlock_file = self._unlock_file_win32 else: - print 'Warning! FileCache locking not supported on this system!' + print('Warning! FileCache locking not supported on this system!') self._lock_file = self._lock_file_dummy self._unlock_file = self._unlock_file_dummy -- 2.25.1