From 5c2252690d2557c2008279040c2562c2e31c37b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20K=C3=A1cha?= <ph@cesnet.cz> Date: Thu, 29 Oct 2015 11:21:46 +0100 Subject: [PATCH] Fixed wrong workaround from a69f0cb7 (typo) --- warden3/warden_client/warden_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/warden3/warden_client/warden_client.py b/warden3/warden_client/warden_client.py index 431ad88..4eb3d5c 100644 --- a/warden3/warden_client/warden_client.py +++ b/warden3/warden_client/warden_client.py @@ -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" -- GitLab