comparison skillbot.pl @ 68:07129a3240e5

Fixing missing semicolon
author Dominic Cleal <dominic@computerkb.co.uk>
date Sat, 21 Nov 2009 12:47:54 +0000
parents 5db6fd5ffe17
children 3455a0ab9264
comparison
equal deleted inserted replaced
67:5db6fd5ffe17 68:07129a3240e5
489 489
490 # Don't attempt updates during downtime, can cause crash 490 # Don't attempt updates during downtime, can cause crash
491 # return if (timestamp_in_downtime(time)); 491 # return if (timestamp_in_downtime(time));
492 492
493 my $char_skill; 493 my $char_skill;
494 eval { $char_skill = $f->{char_api}->skill; } 494 eval { $char_skill = $f->{char_api}->skill; };
495 warn $@ if $@; 495 warn $@ if $@;
496 496
497 # Sometimes this is undefined if there's an API error, try later 497 # Sometimes this is undefined if there's an API error, try later
498 return unless defined $char_skill; 498 return unless defined $char_skill;
499 499