From 9ded55f015704b908b1c6eb2e2b2e49922e50085 Mon Sep 17 00:00:00 2001 From: Jeremy Auguste <jeremy.auguste@lis-lab.fr> Date: Wed, 5 Dec 2018 09:06:47 +0100 Subject: [PATCH] Started making the script compatible with python2.7+ --- oarstats.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/oarstats.py b/oarstats.py index bb502c5..065161b 100755 --- a/oarstats.py +++ b/oarstats.py @@ -1,6 +1,9 @@ #!/usr/bin/env python # coding: utf-8 +from __future__ import print_function +from __future__ import unicode_literals + import argparse import logging import sys -- GitLab