From 5421dbfb34e3158de3c12a533f9c8854414ffd85 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Tue, 29 Apr 2014 23:52:22 -0700 Subject: [PATCH] Make it clearer that we're copying from config to config --- lib/pry/repl_file_loader.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/pry/repl_file_loader.rb b/lib/pry/repl_file_loader.rb index f1ffe035..cd8de9a1 100644 --- a/lib/pry/repl_file_loader.rb +++ b/lib/pry/repl_file_loader.rb @@ -23,9 +23,9 @@ class Pry # and use the regular print and exception handlers. # @param [Pry] _pry_ the Pry instance to make interactive. def interactive_mode(_pry_) - _pry_.input = Pry.config.input - _pry_.print = Pry.config.print - _pry_.exception_handler = Pry.config.exception_handler + _pry_.config.input = Pry.config.input + _pry_.config.print = Pry.config.print + _pry_.config.exception_handler = Pry.config.exception_handler Pry::REPL.new(_pry_).start end