---------------------------------------------------------------------------
NotMatching Traceback (most recent call last)
<ipython-input-1-a5c9fbcc67e5> in <module>()
3 import sys
4 import os
----> 5 from downloader import download_latest
6 get_ipython().magic(u'matplotlib inline')
/Users/kathryncogert/Reference/BioReactor-Data-Logging/Project/downloader.py in <module>()
25 return
26
---> 27 download_latest()
/Users/kathryncogert/Reference/BioReactor-Data-Logging/Project/downloader.py in download_latest(reactorno, filename)
22 if os.path.isfile(save_to):
23 remove_file(save_to)
---> 24 read_from_reactordrive(reactorno, filename, save_to)
25 return
26
/Users/kathryncogert/Reference/BioReactor-Data-Logging/Project/googledriveutils.pyc in read_from_reactordrive(reactorno, filename, save_file_as)
282 file_to_read = find_reactorfileid(reactorno, filename)
283 if file_to_read is False:
--> 284 raise NotMatching('The file specified: '+filename+' does not exist')
285 else:
286 file_to_read.GetContentFile(save_file_as)
NotMatching: The file specified: R1data does not exist