diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-03-23 22:07:46 +0100 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-03-23 22:07:46 +0100 |
commit | 41fba3fa34d46c77dbfb580fc3a8c737d68eafde (patch) | |
tree | d0bab752eb8ee237b0f33558a0394fd5b2184fc9 /data/rbot/plugins/imdb.rb | |
parent | 5bf80527c700806cecb37edefff8b22ee8318d04 (diff) |
imdb plugin: fix author output broken by [37b6e68426dbe8812b47ae5bcdadf0fb5df76e26]
Diffstat (limited to 'data/rbot/plugins/imdb.rb')
-rw-r--r-- | data/rbot/plugins/imdb.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/imdb.rb b/data/rbot/plugins/imdb.rb index 2fde6cb1..0a878c75 100644 --- a/data/rbot/plugins/imdb.rb +++ b/data/rbot/plugins/imdb.rb @@ -206,7 +206,7 @@ class Imdb name = m[1] info << "#{name}" - info << " : http://www.imdb.com#{sr}" unless opts[:nourl] + info.last << " : http://www.imdb.com#{sr}" unless opts[:nourl] return info if opts[:name_only] |