From mboxrd@z Thu Jan 1 00:00:00 1970 From: wmorgan-sup@masanjin.net (William Morgan) Date: Thu, 24 Jan 2008 16:26:50 -0800 Subject: [sup-talk] NoMethodError running sup-config In-Reply-To: References: Message-ID: <1201220266-sup-191@south> Reformatted excerpts from Sho Fukamachi's message of 2008-01-24: > I realise it's probably something dumb I'm doing but I did try a > couple of times. Any clues? Nope, this is an Official Bug. Sorry! The following minor patch should fix it. Git master and next have been updated with this. diff --git a/lib/sup/mbox/ssh-file.rb b/lib/sup/mbox/ssh-file.rb index 25074be..d474636 100644 --- a/lib/sup/mbox/ssh-file.rb +++ b/lib/sup/mbox/ssh-file.rb @@ -122,6 +122,7 @@ class SSHFile def seek loc; @offset = loc; end def tell; @offset; end def total; size; end + def path; @fn end def size if @file_size.nil? || (Time.now - @last_size_check) > SIZE_CHECK_INTERVAL -- William