From 58dbf0b2282595aab30494bdece5debde5c5cf46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 10 May 2016 18:20:01 +0200 Subject: [PATCH] Fixed typo --- pillar/manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pillar/manage.py b/pillar/manage.py index 96f77b8c..d14f4246 100755 --- a/pillar/manage.py +++ b/pillar/manage.py @@ -701,7 +701,7 @@ def files_make_public_t(): storage = GoogleCloudStorageBucket(str(f['project'])) blob = storage.Get(variation_t['file_path'], to_dict=False) if not blob: - print('Unable to find blob for project %s file %s', f['project'], f['_id']) + print('Unable to find blob for project %s file %s' %(f['project'], f['_id'])) continue print('Making blob public: {0}'.format(blob.path))