# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
# In a Windows environment this must be set to your system time zone.
-TIME_ZONE = 'America/Chicago'
+TIME_ZONE = 'Europe/Paris'
# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
-LANGUAGE_CODE = 'en-us'
+LANGUAGE_CODE = 'fr-fr'
SITE_ID = 1
# 'django.contrib.admindocs',
'django_extensions',
'south',
- # 'timeside',
'timeside.server',
'timeside.player',
'rest_framework',
def get(self, request, *args, **kwargs):
result = Result.objects.get(pk=kwargs['pk'])
- return HttpResponse(stream_from_file(result.file.path), mimetype='image/png')
+ return HttpResponse(stream_from_file(result.file.path),
+ mimetype='image/png')
+