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

Commit 304ddbb

Browse files
committed
Correct Python 2.6 support
1 parent 2cbcc59 commit 304ddbb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

raven/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def get_module_versions(self):
235235

236236
modules = get_versions(self.include_paths)
237237
modules['python'] = '{}.{}.{}'.format(
238-
version_info.major, version_info.minor, version_info.micro,
238+
version_info[0], version_info[1], version_info[2],
239239
)
240240

241241
return modules

0 commit comments

Comments
 (0)