Commit 916437c8 by Clinton Blackburn

Corrected Client.DATETIME_FORMAT

parent cb7e3f51
......@@ -23,7 +23,7 @@ class Client(object):
# Date/time formats to be used when sending and parsing data from the API
DATE_FORMAT = '%Y-%m-%d'
DATETIME_FORMAT = DATE_FORMAT + 'T%f'
DATETIME_FORMAT = DATE_FORMAT + 'T%H%M%S'
def __init__(self, base_url, auth_token=None, timeout=0.25):
"""
......
......@@ -2,7 +2,7 @@ from distutils.core import setup
setup(
name='edx-analytics-data-api-client',
version='0.2.2',
version='0.2.3',
packages=['analyticsclient'],
url='https://github.com/edx/edx-analytics-data-api-client',
description='Client used to access edX analytics data warehouse',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment