From 1cf60f2ff11a3f46a9fc6629a36ccac80e3a246f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Cyril=20Bont=C3=A9?= <cyril.bonte@free.fr>
Date: Fri, 6 Jun 2014 20:30:48 +0200
Subject: [PATCH] silently fail if OrderedDict is not available for python 2.6

---
 misc/log-analytics/import_logs.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/misc/log-analytics/import_logs.py b/misc/log-analytics/import_logs.py
index 0e4eb669ef..39514b37ac 100755
--- a/misc/log-analytics/import_logs.py
+++ b/misc/log-analytics/import_logs.py
@@ -53,7 +53,7 @@ except ImportError:
     try:
         from ordereddict import OrderedDict
     except ImportError:
-        print >> sys.stderr, 'ordereddict (https://pypi.python.org/pypi/ordereddict) is required to enable dates caching.'
+        pass
 
 
 ##
-- 
GitLab