master
Joey Hess 2008-07-14 23:00:29 -04:00
parent 76bda69a92
commit 2696e0c6db
1 changed files with 2 additions and 2 deletions

View File

@ -157,9 +157,9 @@ sub migrate_to_internal { #{{{
debug("$oldname not found"); debug("$oldname not found");
} }
if (-e $oldoutput) { if (-e $oldoutput) {
use IkiWiki::Render; require IkiWiki::Render;
debug("removing output file $oldoutput"); debug("removing output file $oldoutput");
IkiWIki::prune($oldoutput) || error ("$!"); IkiWiki::prune($oldoutput);
} }
} }