Comment 1 for bug 693536

Revision history for this message
Arvind S Raj (arvindsraj-deactivatedaccount) wrote :

A solution to this would be to use the code of lsb_release to determine the codename. After determining the codename,
                   PARTNER_LIST = "canonical-partner-maverick.list" (line 59 in umusicstore/MusicStoreWidget.py)
would change to
                  PARTNER_LIST = "canonical-partner-" + codename + ".list"
and
                  dist="maverick" (line 439 in umusicstore/MusicStoreWidget.py)
would change to
                  dist=codename.

Or is there any better alternative?