Skip to content
Snippets Groups Projects
Commit 5c225269 authored by Pavel Kácha's avatar Pavel Kácha
Browse files

Fixed wrong workaround from a69f0cb7 (typo)

parent e817b961
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ from os import path
from operator import itemgetter
from sys import version_info
fix_logging_filename = str if version_info<(2.7) else lambda(x): x
fix_logging_filename = str if version_info<(2, 7) else lambda(x): x
VERSION = "3.0-beta2"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment