Skip to content

Commit

Permalink
Add missing parens for print stmt in 1rst notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
cjauvin committed Jan 29, 2016
1 parent 1d51a18 commit 2209d03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tensorflow/examples/udacity/1_notmnist.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
" filename, _ = urlretrieve(url + filename, filename)\n",
" statinfo = os.stat(filename)\n",
" if statinfo.st_size == expected_bytes:\n",
" print 'Found and verified', filename\n",
" print('Found and verified', filename)\n",
" else:\n",
" raise Exception(\n",
" 'Failed to verify' + filename + '. Can you get to it with a browser?')\n",
Expand Down Expand Up @@ -654,4 +654,4 @@
]
}
]
}
}

0 comments on commit 2209d03

Please sign in to comment.