From 4a4eff2ea8f4e2ad62305b575e1fa42b131d1365 Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Thu, 23 Sep 2010 22:34:08 +0200 Subject: TokyoCabinet: only warn about skipped upgrade if the old reg was found --- lib/rbot/registry/tc.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/rbot') diff --git a/lib/rbot/registry/tc.rb b/lib/rbot/registry/tc.rb index b1b811f7..ca05ebeb 100644 --- a/lib/rbot/registry/tc.rb +++ b/lib/rbot/registry/tc.rb @@ -191,8 +191,8 @@ class Bot # NB this function is called _early_ in init(), pretty much all you have to # work with is @bot.botclass. def upgrade_data + oldreg = @bot.path 'registry.db' if defined? DBHash - oldreg = @bot.path 'registry.db' newreg = @bot.path 'plugin_registry.db' if File.exist?(oldreg) log _("upgrading old-style (rbot 0.9.5 or earlier) plugin registry to new format") @@ -206,7 +206,7 @@ class Bot File.rename(oldreg, oldreg + ".old") end else - warning "Won't upgrade data: BDB not installed" + warning "Won't upgrade data: BDB not installed" if File.exist? oldreg end end -- cgit v1.2.3