summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-11-27 03:24:05 -0600
committerJesse Luehrs <doy@tozt.net>2009-11-27 03:24:05 -0600
commitb783f95169d9ee4ddb32ef07ba6546a341a948ed (patch)
treec54afac9cbab1635d5dc918d3e4f403957a4bce4
parentf37beb4ccf327d07420f0f521ef498602541d455 (diff)
downloadcrawlbot-b783f95169d9ee4ddb32ef07ba6546a341a948ed.tar.gz
crawlbot-b783f95169d9ee4ddb32ef07ba6546a341a948ed.zip
use older File::Path interface
-rw-r--r--lib/Crawl/Bot.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Crawl/Bot.pm b/lib/Crawl/Bot.pm
index 9e1cd93..3b2fd70 100644
--- a/lib/Crawl/Bot.pm
+++ b/lib/Crawl/Bot.pm
@@ -39,7 +39,7 @@ has mantis => (
sub BUILD {
my $self = shift;
- File::Path::make_path($self->data_dir);
+ File::Path::mkpath($self->data_dir);
$self->mantis;
}