# HG changeset patch # User Matt Shirley # Date 1405009565 14400 # Node ID 46b589e9747ad3a6d44fdb6fc75b11cfd227061f # Parent 33fa019735a48b09dcbaf0ccc276199a5605c131 Remove underscore from extra_files_path. diff -r 33fa019735a4 -r 46b589e9747a json_data_source.py --- a/json_data_source.py Thu Jul 10 11:41:54 2014 -0400 +++ b/json_data_source.py Thu Jul 10 12:26:05 2014 -0400 @@ -108,7 +108,8 @@ primary=primary) ) download_from_query( query_item, target_output_filename ) if extra_data: - download_extra_data( extra_data, '_'.join( [ target_output_filename, 'files' ] ) ) + extra_files_path = ''.join( [ target_output_filename, 'files' ] ) + download_extra_data( extra_data, extra_files_path ) return True