diff --git a/export/generic.pm b/export/generic.pm
index e076033..2ced9a7 100644
--- a/export/generic.pm
+++ b/export/generic.pm
@@ -207,12 +207,12 @@ package export::generic;
         my $episode = shift;
     # Don't generate a cutlist
         return unless ($self->val('gencutlist'));
-    # Find mythcommflag
-        my $mythcommflag = find_program('mythcommflag');
+    # Find mythutil
+        my $mythutil = find_program('mythutil');
     # Nothing?
-        die "Can't find mythcommflag.\n" unless ($mythcommflag);
+        die "Can't find mythutil.\n" unless ($mythutil);
     # Generate the cutlist
-        system("$NICE $mythcommflag --gencutlist -c '$episode->{'chanid'}' -s '".unix_to_myth_time($episode->{'recstartts'})."'");
+        system("$NICE $mythutil --gencutlist --chanid '$episode->{'chanid'}' --starttime '".unix_to_myth_time($episode->{'recstartts'})."'");
     }
 
 # Check for a duplicate filename, and return a full path to the output filename
diff --git a/nuvexportrc b/nuvexportrc
index 655b967..4b4ee42 100644
--- a/nuvexportrc
+++ b/nuvexportrc
@@ -216,7 +216,7 @@
     use_cutlist = yes
 
 #
-# Tell mythcommflag to generate a cutlist from the commercial flags before
+# Tell mythutil to generate a cutlist from the commercial flags before
 #    exporting.  Don't forget to enable use_cutlist above, too.
 #
 #   gencutlist = no
