--- /Applications/MAMP/htdocs/38s-ipsite/sites/all/modules/contrib/node_export/node_export.drush.inc	2010-04-09 14:57:01.000000000 -0400
+++ /Applications/MAMP/htdocs/38s-ipsite/sites/all/modules/contrib/node_export/node_export.drush.new	2010-04-09 14:57:31.000000000 -0400
@@ -28,20 +28,20 @@
     'drush node_export 45 46 47 > filename' => 
       'Export nodes 45, 46, and 47 to given filename. (Runs the risk of error messages going to that file.)',
   );
-  $items['node_export import'] = array(
+  $items['node_export-import'] = array(
     'callback' => 'node_export_drush_callback_import',
     'description' => "Import node code from a previous export.",
     'options' => array(
       '--uid' => "Uid of user to save nodes as. If not given will use 1. You may specify 0 for the Anonymous user.",
     ),
     'examples' => array(
-      'drush node_export import < filename' => 
+      'drush node_export-import < filename' => 
         'Import nodes from given filename.',
-      'drush node_export import --uid=2 < filename' => 
+      'drush node_export-import --uid=2 < filename' => 
         'Import nodes from given filename, saving them with uid 2 as author.',
     ),
   );
-  $items['node_export type'] = array(
+  $items['node_export-type'] = array(
     'callback' => 'node_export_drush_callback_export_type',
     'description' => "Export all nodes in the given content type.",
     'arguments' => array(
@@ -51,10 +51,10 @@
       '--file' => "A filename to write the node data to.",
     ),
     'examples' => array(
-      'drush node_export type story --file=filename' => 
+      'drush node_export-type story --file=filename' => 
         'Export all nodes of type \'story\' to given filename.',
     ),
-    'drush node_export type story > filename' => 
+    'drush node_export-type story > filename' => 
       'Export all nodes of type \'story\' to given filename. (Runs the risk of error messages going to that file.)',
   );
 
@@ -77,7 +77,7 @@
   switch ($section) {
     case 'drush:node_export':
       return dt("Exports nodes. Usage: 'drush node_export > filename'.");
-    case 'drush:node_export import':
+    case 'drush:node_export-import':
       return dt("Imports nodes that have been exported. Usage: 'drush node_export import < filename'.");
   }
 }
