From 8ca3e0efa2b1eaff06f32da9e02fc7e2a77a73df Mon Sep 17 00:00:00 2001
From: Alexandre Morignot <erdnaxeli@gmail.com>
Date: Thu, 8 Aug 2013 22:49:21 +0200
Subject: [PATCH] Moving url parser.pm into lib/sites/

---
 PlayBot.pl                | 4 ++--
 lib/{ => sites}/parser.pm | 0
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename lib/{ => sites}/parser.pm (100%)

diff --git a/PlayBot.pl b/PlayBot.pl
index 526a37c..e09baad 100755
--- a/PlayBot.pl
+++ b/PlayBot.pl
@@ -13,7 +13,7 @@ use FindBin;
 
 use lib "$FindBin::Bin/lib/";
 use Logging;
-use parser;
+use sites::parser;
 
 # nom du fichier
 my $bot = $0;
@@ -262,7 +262,7 @@ sub on_speak
 	my ($nick,$mask) = split(/!/,$user);
 	my %content;
 
-	%content = parser::parse($msg);
+	%content = sites::parser::parse($msg);
 
     if ($@) {
         $log->warning ($@);
diff --git a/lib/parser.pm b/lib/sites/parser.pm
similarity index 100%
rename from lib/parser.pm
rename to lib/sites/parser.pm
-- 
GitLab