You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Setting up a custom stylesheet in IJulia
file = open("style.css") # A .css file in the same folder as this notebook file
styl = readall(file) # Read the file
HTML("$styl") # Output as HTML
WARNING: readall is deprecated, use readstring instead.
in depwarn(::String, ::Symbol) at ./deprecated.jl:64
in readall(::IOStream, ::Vararg{IOStream,N}) at ./deprecated.jl:30
in include_string(::String, ::String) at ./loading.jl:441
in execute_request(::ZMQ.Socket, ::IJulia.Msg) at /home/balleng/.julia/v0.5/IJulia/src/execute_request.jl:169
in eventloop(::ZMQ.Socket) at /home/balleng/.julia/v0.5/IJulia/src/eventloop.jl:8
in (::IJulia.##9#15)() at ./task.jl:360
while loading In[1], in expression starting on line 3
Using the function readstring instead of readall in line 3 solves the problem.
Cheers,
Gustavo
The text was updated successfully, but these errors were encountered:
gaballench
changed the title
Week2_4-SimplePlots.ipynb shows warning in cormating cell 1
Week2_4-SimplePlots.ipynb shows warning in cell 1
Nov 27, 2016
In cell 1 the following warning is reported:
Using the function
readstring
instead ofreadall
in line 3 solves the problem.Cheers,
Gustavo
The text was updated successfully, but these errors were encountered: