diff --git a/debian/changelog b/debian/changelog index 25f1be4e..02ce287d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +wubi (16.10r319) yakkety; urgency=low + + [Hakuna Matata] + + * add Budgie-Remix as Wubi SHA256 + https://github.com/hakuna-m/wubiuefi/issues/28 + wubi (16.10r318) yakkety; urgency=low [Hakuna Matata] diff --git a/src/wubi/backends/common/distro.py b/src/wubi/backends/common/distro.py index 7af0a411..7b03812a 100644 --- a/src/wubi/backends/common/distro.py +++ b/src/wubi/backends/common/distro.py @@ -24,7 +24,7 @@ import re log = logging.getLogger('Distro') -disk_info_re = '''(?P[\w\s-]+) (?P[\d.]+)(?: LTS)?(?: (?:\")?(?P[\w\s]+)(?:\")?)? - (?P[\D]+) (?Pi386|amd64)(?: (?:\()?(?P[\d.]+)(?:\))?)?''' +disk_info_re = '''(?P[\w\s-]+) (?P[\d.]+)(?: LTS)?(?: (?:\")?(?P[\w\s-]+)(?:\")?)? - (?P[\D]+)? (?Pi386|amd64)(?: (?:\()?(?P[\d.]+)(?:\))?)?''' disk_info_re = re.compile(disk_info_re) class Distro(object):