Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorCyril Bonté <cyril.bonte@free.fr>2014-06-06 22:30:48 +0400
committerCyril Bonté <cyril.bonte@free.fr>2014-06-06 23:30:27 +0400
commit1cf60f2ff11a3f46a9fc6629a36ccac80e3a246f (patch)
tree76cbf23403c3cafd080292b38dd1cc9f7bec963e /misc
parent3d19bc026e03d8c6f1fe5767386429ab120bc8fe (diff)
silently fail if OrderedDict is not available for python 2.6
Diffstat (limited to 'misc')
-rwxr-xr-xmisc/log-analytics/import_logs.py2
1 files changed, 1 insertions, 1 deletions
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
##