Skip to content
Snippets Groups Projects
Commit dd840aa7 authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

dpsounds: handle track names that aren't strictly numeric.

parent ed9aad40
No related branches found
No related tags found
No related merge requests found
Pipeline #45 failed with stage
in 3 minutes and 48 seconds
......@@ -94,6 +94,7 @@ class DpsoundsAdapter(BaseAdapter):
"Attributes": wtf_attributes,
"Custom Fields": (phpserialize.dumps(custom_fields)
.decode('utf-8')),
"Menu Order": 10000 + _make_int(r['Track'])
})
return product
......@@ -105,3 +106,7 @@ class DpsoundsAdapter(BaseAdapter):
self.products.append(product)
adapter_cls = DpsoundsAdapter
def _make_int(str_in):
"""Cast string to int, ignoring any excess chars."""
return int(''.join(c for c in str_in if c.isdigit()))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment