From e2924ae5729fe58c8c878eabcfe0b8a97579fab7 Mon Sep 17 00:00:00 2001
From: Travis Carden <TravisCarden@236758.no-reply.drupal.org>
Date: Thu, 12 Jan 2012 16:20:47 -0600
Subject: [PATCH] Issue 1403260: Fix typo in error message "@path does not exists".

---
 features_tools.module |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/features_tools.module b/features_tools.module
index 212302c..8acc6ed 100644
--- a/features_tools.module
+++ b/features_tools.module
@@ -111,7 +111,7 @@ function features_tools_form_features_export_form_alter(&$form, &$form_state) {
   $path = $form['#feature']->name ? drupal_get_path('module', $form['#feature']->name) : 'sites/all/modules';
   $writeable = file_prepare_directory($path);
   if ($writeable === FALSE) {
-    drupal_set_message(t('The directory @path does not exists or not writable', array('@path' => $path)), 'error');
+    drupal_set_message(t('The directory @path does not exist or not writable', array('@path' => $path)), 'error');
   }
   //TODO: add backup options.
   if (variable_get('featrues_tools_disable_features_page_js', 0)) {
-- 
1.7.4.1

