Files
edx-platform/lms/djangoapps/instructor/views/tools.py
2013-09-12 10:10:19 -04:00

8 lines
155 B
Python

"""
Tools for the instructor dashboard
"""
def strip_if_string(value):
if isinstance(value, basestring):
return value.strip()
return value