From 50d753a87b5f6bc4fe31e222a37796cf903133f7 Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Sun, 24 May 2020 01:57:06 +0100 Subject: Convert codebase for python3 usage --- imagekit/management/commands/ikflush.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'imagekit/management/commands/ikflush.py') diff --git a/imagekit/management/commands/ikflush.py b/imagekit/management/commands/ikflush.py index c03440f..0af60c4 100644 --- a/imagekit/management/commands/ikflush.py +++ b/imagekit/management/commands/ikflush.py @@ -20,9 +20,9 @@ def flush_cache(apps, options): """ apps = [a.strip(',') for a in apps] if apps: - print 'Flushing cache for %s...' % ', '.join(apps) + print('Flushing cache for %s...' % ', '.join(apps)) else: - print 'Flushing caches...' + print('Flushing caches...') for app_label in apps: app = cache.get_app(app_label) -- cgit v1.2.3