changeset 6:46b589e9747a

Remove underscore from extra_files_path.
author Matt Shirley <mdshw5@gmail.com>
date Thu, 10 Jul 2014 12:26:05 -0400
parents 33fa019735a4
children ac7b4cab83cd
files json_data_source.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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