1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

Fix warning

```
warning: instance variable @readline_output not initialized
```
This commit is contained in:
Fumiaki MATSUSHIMA 2015-04-05 23:37:50 +09:00
parent 2c32d5e5f6
commit 6e5d24d8d4

View file

@ -23,6 +23,8 @@ class Pry
@pry = pry @pry = pry
@indent = Pry::Indent.new @indent = Pry::Indent.new
@readline_output = nil
if options[:target] if options[:target]
@pry.push_binding options[:target] @pry.push_binding options[:target]
end end