Skip to content

Commit

Permalink
Fix file extension issue (#258)
Browse files Browse the repository at this point in the history
Changed .txt reference to .csv since the download script yields .csv file downloads (in most browsers)
  • Loading branch information
ajthinking authored and jph00 committed Mar 27, 2019
1 parent 36bd093 commit 5e753f7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions nbs/dl1/lesson2-download.ipynb
Expand Up @@ -104,7 +104,7 @@
"outputs": [],
"source": [
"folder = 'black'\n",
"file = 'urls_black.txt'"
"file = 'urls_black.csv'"
]
},
{
Expand All @@ -114,7 +114,7 @@
"outputs": [],
"source": [
"folder = 'teddys'\n",
"file = 'urls_teddys.txt'"
"file = 'urls_teddys.csv'"
]
},
{
Expand All @@ -124,7 +124,7 @@
"outputs": [],
"source": [
"folder = 'grizzly'\n",
"file = 'urls_grizzly.txt'"
"file = 'urls_grizzly.csv'"
]
},
{
Expand Down Expand Up @@ -153,10 +153,10 @@
{
"data": {
"text/plain": [
"[PosixPath('data/bears/urls_teddy.txt'),\n",
"[PosixPath('data/bears/urls_teddy.csv'),\n",
" PosixPath('data/bears/black'),\n",
" PosixPath('data/bears/urls_grizzly.txt'),\n",
" PosixPath('data/bears/urls_black.txt')]"
" PosixPath('data/bears/urls_grizzly.csv'),\n",
" PosixPath('data/bears/urls_black.csv')]"
]
},
"execution_count": null,
Expand Down

0 comments on commit 5e753f7

Please sign in to comment.