From cf9793f39420caaa45bf85c607bce25bf8fc0ecb Mon Sep 17 00:00:00 2001
From: Mathieu Lutfy <mathieu@bidon.ca>
Date: Sun, 31 Jan 2016 12:37:47 -0500
Subject: [PATCH] Issue #2659920: fix drush_log usage in Provision/Config.php
 custom template loading.

---
 Provision/Config.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Provision/Config.php b/Provision/Config.php
index e7633a6..763b003 100644
--- a/Provision/Config.php
+++ b/Provision/Config.php
@@ -127,9 +127,9 @@ class Provision_Config {
     if (!empty($templates) && is_array($templates)) {
       foreach ($templates as $file) {
         if (is_readable($file)) {
-          drush_log(dt('Template loaded from hook(s): :file'), array(
+          drush_log(dt('Template loaded from hook(s): :file', array(
             ':file' => $file,
-          ));
+          )));
           return file_get_contents($file);
         }
       }
-- 
2.1.4

