Skip to content

Commit

Permalink
Merge branch 'feature/pdf-ids-bugfix' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
felliott committed May 18, 2018
2 parents c19ae0e + 6801fb0 commit 46df6fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mfr/server/handlers/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async def prepare(self):
self.format = format[0].decode('utf-8')
self.exporter_name = utils.get_exporter_name(self.metadata.ext)

self.cache_file_id = '{}.{}'.format(self.self.metadata.unique_key, self.format)
self.cache_file_id = '{}.{}'.format(self.metadata.unique_key, self.format)

if self.exporter_name:
cache_file_path_str = '/export/{}.{}'.format(self.cache_file_id, self.exporter_name)
Expand Down

0 comments on commit 46df6fb

Please sign in to comment.