summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/pry/repl.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pry/repl.rb b/lib/pry/repl.rb
index d603e8de..a6174d5d 100644
--- a/lib/pry/repl.rb
+++ b/lib/pry/repl.rb
@@ -50,7 +50,7 @@ class Pry
return unless pry.config.correct_indent
# Clear the line before starting Pry. This fixes issue #566.
- Kernel.print(Helpers::Platform.windows_ansi? ? "\e[0F" : "\e[0G")
+ output.print(Helpers::Platform.windows_ansi? ? "\e[0F" : "\e[0G")
end
# The actual read-eval-print loop.