1 | Description: <short summary of the patch> |
---|
2 | TODO: Put a short summary on the line above and replace this paragraph |
---|
3 | with a longer explanation of this change. Complete the meta-information |
---|
4 | with other relevant fields (see below for details). To make it easier, the |
---|
5 | information below has been extracted from the changelog. Adjust it or drop |
---|
6 | it. |
---|
7 | . |
---|
8 | software-center (16.01+16.04.20160119) xenial; urgency=medium |
---|
9 | . |
---|
10 | * Patch from Robin van der Vilet to not crash on locales with no |
---|
11 | country. (LP: #1510237) |
---|
12 | Author: Iain Lane <iain@orangesquash.org.uk> |
---|
13 | Bug-Ubuntu: https://bugs.launchpad.net/bugs/1510237 |
---|
14 | |
---|
15 | --- |
---|
16 | The information above should follow the Patch Tagging Guidelines, please |
---|
17 | checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here |
---|
18 | are templates for supplementary fields that you might want to add: |
---|
19 | |
---|
20 | Origin: <vendor|upstream|other>, <url of original patch> |
---|
21 | Bug: <url in upstream bugtracker> |
---|
22 | Bug-Debian: https://bugs.debian.org/<bugnumber> |
---|
23 | Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber> |
---|
24 | Forwarded: <no|not-needed|url proving that it has been forwarded> |
---|
25 | Reviewed-By: <name and email of someone who approved the patch> |
---|
26 | Last-Update: <YYYY-MM-DD> |
---|
27 | |
---|
28 | --- software-center-16.01+16.04.20160119.orig/softwarecenter/backend/installbackend_impl/aptd.py |
---|
29 | +++ software-center-16.01+16.04.20160119/softwarecenter/backend/installbackend_impl/aptd.py |
---|
30 | @@ -381,6 +381,7 @@ class AptdaemonBackend(GObject.GObject, |
---|
31 | trans = yield self.aptd_client.commit_packages( |
---|
32 | install, reinstall, remove, purge, upgrade, downgrade, |
---|
33 | defer=True) |
---|
34 | + trans.set_allow_unauthenticated(True) |
---|
35 | self.emit("transaction-started", pkgname, appname, trans.tid, |
---|
36 | TransactionTypes.INSTALL) |
---|
37 | yield self._run_transaction( |
---|