diff -u drush_views.orig/drush_views.drush.inc drush_views/drush_views.drush.inc
--- drush_views.orig/drush_views.drush.inc	2010-01-01 02:23:03.000000000 +1100
+++ drush_views/drush_views.drush.inc	2010-02-28 13:43:33.517304118 +1100
@@ -13,8 +13,8 @@
  */
 function drush_views_drush_help($section) {
   switch ($section) {
-      case 'drush:views export':
-        return dt("Usage: drush [options] views export <views>\n\n"
+      case 'drush:views-export':
+        return dt("Usage: drush [options] views-export <views>\n\n"
                  ."Export the specified views to single .view files.\n"
                  ."<views> should be a comma-separated list. For example: view1,view2,view3.\n"
                  ."If <views> is omitted, all views are exported.\n\n"
@@ -23,8 +23,8 @@
                  ."  Store exported views in the TARGET_PATH directory.\n"
                  ."  If omitted, the default path @default_path is used.\n",
                  array('@default_path' => DRUSH_VIEWS_DEFAULT_PATH));
-      case 'drush:views import':
-        return dt("Usage: drush [options] views import <views>\n\n"
+      case 'drush:views-import':
+        return dt("Usage: drush [options] views-import <views>\n\n"
                  ."Import the specified views.\n"
                  ."Existing views will be deleted, or overridden if they are default views.\n"
                  ."<views> should be a comma-separated list of files, with an optional\n"
@@ -32,16 +32,18 @@
                  ."If <views> is a directory, all *.view files it contains will be imported.\n"
                  ."If omitted, the default path @default_path is used.\n",
                  array('@default_path' => DRUSH_VIEWS_DEFAULT_PATH));
-     case 'drush:views list':
-       return dt("Usage: drush [options] views list\n\n"
+     case 'drush:views-list':
+       return dt("Usage: drush [options] views-list\n\n"
                  ."List all available views.");
-     case 'drush:views delete':
-       return dt("Usage: drush [options] views delete <views>\n\n"
+     case 'drush:views-delete':
+       return dt("Usage: drush [options] views-delete <views>\n\n"
                  ."Delete the specified views. Use 'ALL' to delete all normal/overridden views.");
-     case 'drush:views tag':
-       return dt("Usage: drush [options] views tag [--names] \n"
-                ."Usage: drush [options] views tag list <tags>\n"
-                ."Usage: drush [options] views tag export [--module=<name>] <tags>");
+     /*
+     case 'drush:views-tag':
+       return dt("Usage: drush [options] views-tag [--names] \n"
+                ."Usage: drush [options] views-tag list <tags>\n"
+                ."Usage: drush [options] views-tag export [--module=<name>] <tags>");
+     */
   }
 }
 
@@ -50,25 +52,25 @@
  */
 function drush_views_drush_command() {
   $items = array();
-  $items['views export'] = array(
+  $items['views-export'] = array(
     'callback' => 'drush_views_export',
     'description' => 'Export one or more views.',
     'drupal dependencies' => array('views'),
     'aliases' => array('vwex'),
   );
-  $items['views import'] = array(
+  $items['views-import'] = array(
     'callback' => 'drush_views_import',
     'description' => 'Import one or more non-default views.',
     'drupal dependencies' => array('views'),
     'aliases' => array('vwim'),
   );
-  $items['views list'] = array(
+  $items['views-list'] = array(
     'callback' => 'drush_views_list',
     'description' => 'List available views.',
     'drupal dependencies' => array('views'),
     'aliases' => array('vwls'),
   );
-  $items['views delete'] = array(
+  $items['views-delete'] = array(
     'callback' => 'drush_views_delete',
     'description' => 'Delete or revert a view.',
     'drupal dependencies' => array('views'),
@@ -91,7 +93,7 @@
 }
 
 /**
- * Command callback: views export.
+ * Command callback: views-export.
  */
 function drush_views_export($views = NULL) {
   $target_path = drush_get_option('target-path');
@@ -134,7 +136,7 @@
 }
 
 /**
- * Command callback: views import.
+ * Command callback: views-import.
  */
 function drush_views_import($views = NULL) {
   if (!$views)
@@ -211,7 +213,7 @@
 }
 
 /**
- * Command callback: views list.
+ * Command callback: views-list.
  */
 function drush_views_list() {
   $views = views_get_all_views();
@@ -234,7 +236,7 @@
 }
 
 /**
- * Command callback: views delete.
+ * Command callback: views-delete.
  */
 function drush_views_delete() {
   $args = func_get_args();
