# HG changeset patch # User Peter Sanchez # Date 1467573624 25200 # Sun Jul 03 12:20:24 2016 -0700 # Node ID a76e24ca70be075359df3204ab39fcf3b4549d88 # Parent 4164a246d3e97384f9e1aa32db8d144d9e6829d5 importing unicode_literals diff --git a/tinder/__init__.py b/tinder/__init__.py --- a/tinder/__init__.py +++ b/tinder/__init__.py @@ -1,3 +1,5 @@ +from __future__ import unicode_literals + VERSION = (0, 1, 0, 'beta', 0) diff --git a/tinder/api.py b/tinder/api.py --- a/tinder/api.py +++ b/tinder/api.py @@ -1,3 +1,5 @@ +from __future__ import unicode_literals + import logging from . import models diff --git a/tinder/binder.py b/tinder/binder.py --- a/tinder/binder.py +++ b/tinder/binder.py @@ -1,3 +1,5 @@ +from __future__ import unicode_literals + import json import logging import requests diff --git a/tinder/constants.py b/tinder/constants.py --- a/tinder/constants.py +++ b/tinder/constants.py @@ -1,3 +1,5 @@ +from __future__ import unicode_literals + REPORT_CAUSE_SPAM = 1 REPORT_CAUSE_INAPPROPRIATE = 2 diff --git a/tinder/exceptions.py b/tinder/exceptions.py --- a/tinder/exceptions.py +++ b/tinder/exceptions.py @@ -1,3 +1,5 @@ +from __future__ import unicode_literals + class TinderError(Exception): pass diff --git a/tinder/facebook.py b/tinder/facebook.py --- a/tinder/facebook.py +++ b/tinder/facebook.py @@ -1,3 +1,4 @@ +from __future__ import unicode_literals # -*- coding: utf-8 -*- ''' This module will emulate a FB login diff --git a/tinder/models.py b/tinder/models.py --- a/tinder/models.py +++ b/tinder/models.py @@ -1,3 +1,5 @@ +from __future__ import unicode_literals + import datetime from . import constants from .utils import pull_date diff --git a/tinder/utils.py b/tinder/utils.py --- a/tinder/utils.py +++ b/tinder/utils.py @@ -1,3 +1,5 @@ +from __future__ import unicode_literals + import os import re import stat