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

Commit 8d4eae4

Browse files
committed
Correct format usage for Py2.6
1 parent d550a39 commit 8d4eae4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

raven/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ def get_module_versions(self):
234234
version_info = sys.version_info
235235

236236
modules = get_versions(self.include_paths)
237-
modules['python'] = '{}.{}.{}'.format(
237+
modules['python'] = '{0}.{1}.{2}'.format(
238238
version_info[0], version_info[1], version_info[2],
239239
)
240240

0 commit comments

Comments
 (0)