From 9874cbc3919d653f33b8deec80c9749c7c7d88af Mon Sep 17 00:00:00 2001 From: Eric Mc Sween Date: Wed, 11 Dec 2013 15:00:00 -0500 Subject: [PATCH] =?utf8?q?Correction=20d'un=20probl=C3=A8me=20d'encodage=20l?= =?utf8?q?orsqu'on=20lance=20un=20syncdb=20dans=20une=20pipe?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- auf/django/references/management/__init__.py | 4 ++-- doc/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/auf/django/references/management/__init__.py b/auf/django/references/management/__init__.py index a6b0e94..fc150c0 100644 --- a/auf/django/references/management/__init__.py +++ b/auf/django/references/management/__init__.py @@ -39,10 +39,10 @@ def creer_vues(sender, **kwargs): # On peut maintenant créer les vues if verbosity > 0: - print u"Création des vues vers datamaster" + print "Création des vues vers datamaster" for table in datamaster_tables: if verbosity > 1: - print u"Création d'une vue vers datamaster.%s" % table + print "Création d'une vue vers datamaster.%s" % table cursor.execute( 'CREATE OR REPLACE VIEW `%s` AS SELECT * FROM datamaster.`%s`' % (table, table) diff --git a/doc/conf.py b/doc/conf.py index 8bb12c4..1838a0c 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -48,9 +48,9 @@ copyright = u'2012, AUF' # built documents. # # The short X.Y version. -version = '0.23' +version = '0.26' # The full version, including alpha/beta/rc tags. -release = '0.23' +release = '0.26' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 7c276cf..fa3c11d 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages name = 'auf.django.references' -version = '0.25' +version = '0.26' setup( name=name, -- 1.7.10.4