From 7f3a76b54faaa378c4c828086686914d6f9ca7aa Mon Sep 17 00:00:00 2001 From: Richard Vankoningsveld Date: Tue, 28 Nov 2017 15:55:51 +1000 Subject: [PATCH] Fix issue 431 Fixing more of https://github.com/swcarpentry/python-novice-inflammation/issues/431 --- _episodes/04-files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_episodes/04-files.md b/_episodes/04-files.md index e500854ec..d9d33f362 100644 --- a/_episodes/04-files.md +++ b/_episodes/04-files.md @@ -155,7 +155,7 @@ where the maxima are a bit less regular, but the minima are consistently zero. > > import numpy > > import matplotlib.pyplot > > -> > filenames = glob.glob('data/inflammation*.csv') +> > filenames = glob.glob('inflammation*.csv') > > composite_data = numpy.zeros((60,40)) > > > > for f in filenames: