Commit 09c48026 by Calen Pennington

Use unicode for filepaths in data repos

parent 0726efd4
...@@ -158,7 +158,7 @@ class XmlDescriptor(XModuleDescriptor): ...@@ -158,7 +158,7 @@ class XmlDescriptor(XModuleDescriptor):
@classmethod @classmethod
def _format_filepath(cls, type, name): def _format_filepath(cls, type, name):
return '{type}/{name}.{ext}'.format(type=type, name=name, ext=cls.filename_extension) return u'{type}/{name}.{ext}'.format(type=type, name=name, ext=cls.filename_extension)
def export_to_xml(self, resource_fs): def export_to_xml(self, resource_fs):
""" """
......
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