Skip to content
Snippets Groups Projects
Commit 368f3d4e 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 #47 passed with stage
in 2 minutes and 44 seconds
...@@ -94,6 +94,7 @@ class DpsoundsAdapter(BaseAdapter): ...@@ -94,6 +94,7 @@ class DpsoundsAdapter(BaseAdapter):
"Attributes": wtf_attributes, "Attributes": wtf_attributes,
"Custom Fields": (phpserialize.dumps(custom_fields) "Custom Fields": (phpserialize.dumps(custom_fields)
.decode('utf-8')), .decode('utf-8')),
"Menu Order": 10000 + _make_int(r['Track'])
}) })
return product return product
...@@ -105,3 +106,8 @@ class DpsoundsAdapter(BaseAdapter): ...@@ -105,3 +106,8 @@ class DpsoundsAdapter(BaseAdapter):
self.products.append(product) self.products.append(product)
adapter_cls = DpsoundsAdapter 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