Smallfix: Send more print message to sys.stderr

remotes/origin/enhancement/email-actions
David Barragán Merino 2013-07-16 10:53:18 +02:00
parent fbdb889f55
commit cba0774595
1 changed files with 7 additions and 5 deletions

View File

@ -1,11 +1,13 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import
import os
from __future__ import (
absolute_import,
print_function
)
import os, sys
try:
print "Trying import local.py settings..."
print("Trying import local.py settings...", file=sys.stderr)
from .local import *
except ImportError:
print "Trying import development.py settings..."
print("Trying import development.py settings...", file=sys.stderr)
from .development import *