Browse Source

Small fix to drush re-run command to take into account the function name changes

Lacey Sanderson 12 years ago
parent
commit
d502001c0d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tripal_core/tripal_core.drush.inc

+ 1 - 1
tripal_core/tripal_core.drush.inc

@@ -208,7 +208,7 @@ function drush_tripal_core_tripal_jobs_launch($username) {
 function drush_tripal_core_tripal_jobs_rerun($username, $job_id) {
 
   $new_job_id = tripal_jobs_rerun($job_id, FALSE);
-  drush_tripal_core_tripal_launch_jobs($username, $new_job_id);
+  drush_tripal_core_tripal_jobs_launch($username, $new_job_id);
 
 }