Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
Correct format usage for Py2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Apr 30, 2015
1 parent d550a39 commit 8d4eae4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion raven/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def get_module_versions(self):
version_info = sys.version_info

modules = get_versions(self.include_paths)
modules['python'] = '{}.{}.{}'.format(
modules['python'] = '{0}.{1}.{2}'.format(
version_info[0], version_info[1], version_info[2],
)

Expand Down

0 comments on commit 8d4eae4

Please sign in to comment.