Skip to content

Commit

Permalink
fix kwargs forwarding
Browse files Browse the repository at this point in the history
  • Loading branch information
IanButterworth committed Apr 16, 2021
1 parent 0d36b10 commit 6278e36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/util.jl
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ end

# allow new prompt methods to be defined if stdin has been
# redirected to some custom stream, e.g. in IJulia.
prompt(message::AbstractString; default::AbstractString="",timeout::Union{Nothing, Real} = nothing) = prompt(stdin, stdout, message, default=default, timeout=timeout)
prompt(message::AbstractString; kwargs...) = prompt(stdin, stdout, message; kwargs...)

# Windows authentication prompt
if Sys.iswindows()
Expand Down

0 comments on commit 6278e36

Please sign in to comment.