Преглед изворни кода

* Fix problem with supybot log format, where the kick message became a
part of a users nick.

Morten Brix Pedersen пре 22 година
родитељ
комит
901e43d6bc
2 измењених фајлова са 4 додато и 1 уклоњено
  1. 3 0
      docs/Changelog
  2. 1 1
      modules/Pisg/Parser/Format/supy.pm

+ 3 - 0
docs/Changelog

@@ -17,6 +17,9 @@ pisg (0.60) - ??
    Changes by Morten Brix Pedersen:
    Changes by Morten Brix Pedersen:
    * Renamed the Danish translation to its correct abbreviation, DA instead
    * Renamed the Danish translation to its correct abbreviation, DA instead
    of DK.
    of DK.
+   * Updated Danish translation.
+   * Fix problem with supybot log format, where the kick message became a
+   part of a users nick.
 
 
 pisg (0.59) - Sun Oct, 3rd 2004
 pisg (0.59) - Sun Oct, 3rd 2004
    Changes by Morten Brix Pedersen:
    Changes by Morten Brix Pedersen:

+ 1 - 1
modules/Pisg/Parser/Format/supy.pm

@@ -81,7 +81,7 @@ sub thirdline
 	
 	
         if (($4.$5) eq 'waskicked') {
         if (($4.$5) eq 'waskicked') {
             $hash{kicker} = $7;
             $hash{kicker} = $7;
-            $hash{nick} = $3;
+            $hash{kicker} =~ s/\s.*//;
 
 
         } elsif (($4.$5) eq 'changestopic') {
         } elsif (($4.$5) eq 'changestopic') {
             $hash{newtopic} = $7;
             $hash{newtopic} = $7;