Add from __future__ import unicode_literals

This commit is contained in:
Alejandro Avilés 2014-10-27 16:02:28 +01:00
parent fd9eeb0325
commit d6b0450852
5 changed files with 10 additions and 0 deletions

View File

@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with Indico; if not, see <http://www.gnu.org/licenses/>.
from __future__ import unicode_literals
from indico.core import signals
from indico.core.plugins import IndicoPlugin, IndicoPluginBlueprint, plugin_url_rule_to_js
from MaKaC.webinterface.pages.conferences import WPConfModifScheduleGraphic

View File

@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with Indico; if not, see <http://www.gnu.org/licenses/>.
from __future__ import unicode_literals
from flask import jsonify
from flask_pluginengine import current_plugin

View File

@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with Indico; if not, see <http://www.gnu.org/licenses/>.
from __future__ import unicode_literals
class RecordConverter(object):
"""

View File

@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with Indico; if not, see <http://www.gnu.org/licenses/>.
from __future__ import unicode_literals
def parse_datetime(string):
split_datetime = string[0].split('T')

View File

@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with Indico; if not, see <http://www.gnu.org/licenses/>.
from __future__ import unicode_literals
from setuptools import setup, find_packages