From 34bb0b77694a51ee5628eacf97a33220e3e97ea8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Sun, 21 Apr 2013 10:23:43 +0000 Subject: [PATCH] from __future__ imports must occur at the beginning of the file svn: r22058 --- gramps/guiQML/views/dbman.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gramps/guiQML/views/dbman.py b/gramps/guiQML/views/dbman.py index 01fdf173b..0ccd0f66b 100644 --- a/gramps/guiQML/views/dbman.py +++ b/gramps/guiQML/views/dbman.py @@ -23,14 +23,6 @@ """ The main view """ - -#------------------------------------------------------------------------- -# -# Constants -# -#------------------------------------------------------------------------- -OPENGL = True - #------------------------------------------------------------------------- # # Standard python modules @@ -69,6 +61,14 @@ from gramps.gen.const import GRAMPS_LOCALE as glocale _ = glocale.translation.gettext from gramps.gen.constfunc import cuni, UNITYPE +#------------------------------------------------------------------------- +# +# Constants +# +#------------------------------------------------------------------------- +OPENGL = True + + #------------------------------------------------------------------------- # # Classes