Skip to content

Commit

Permalink
Fix string format for python 2.6 compat
Browse files Browse the repository at this point in the history
closes pulp#1809
  • Loading branch information
asmacdo committed Apr 4, 2016
1 parent 8262bc5 commit 1503f27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/pulp/server/db/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ def _local_storage_path(self):
"""
return os.path.join(
LOCAL_STORAGE, 'importers',
'{}-{}'.format(self.repo_id, self.importer_type_id))
'{repo}-{importer_type}'.format(repo=self.repo_id, importer_type=self.importer_type_id))

@property
def _pki_path(self):
Expand Down

0 comments on commit 1503f27

Please sign in to comment.