[Bug 1505337] Re: update-manager crashed with aptdaemon.errors.AptDaemonError in commit(): org.debian.apt: kinit#auto isn't a valid package name

2016-01-23 Thread Chrescht
Am getting the same when running "ubuntu-manager -d", then trying to update to Ubuntu 16.04. Traceback (most recent call last): File "/usr/lib/python3/dist-packages/defer/__init__.py", line 483, in _inline_callbacks result = gen.throw(excep) File

[Bug 1505337] Re: update-manager crashed with aptdaemon.errors.AptDaemonError in commit(): org.debian.apt: kinit#auto isn't a valid package name

2015-10-14 Thread syscon-hh
The Traceback on our computer differ to #3 as following, see last line: Traceback (most recent call last): File "/usr/lib/python3/dist-packages/defer/__init__.py", line 483, in _inline_callbacks result = gen.throw(excep) File

[Bug 1505337] Re: update-manager crashed with aptdaemon.errors.AptDaemonError in commit(): org.debian.apt: kinit#auto isn't a valid package name

2015-10-13 Thread Brian Murray
** Changed in: update-manager (Ubuntu) Status: New => Triaged -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1505337 Title: update-manager crashed with aptdaemon.errors.AptDaemonError in

[Bug 1505337] Re: update-manager crashed with aptdaemon.errors.AptDaemonError in commit(): org.debian.apt: kinit#auto isn't a valid package name

2015-10-13 Thread Brian Murray
Speaking to mvo about this he believes its possible that update-manager and aptdaemon were updated but that the running aptdaemon was not replaced with the new version of aptdaemon. Subsequently, the flag was passed to aptdaemon and it didn't know how to handle it. Looking at the Aptdaemon.txt

[Bug 1505337] Re: update-manager crashed with aptdaemon.errors.AptDaemonError in commit(): org.debian.apt: kinit#auto isn't a valid package name

2015-10-12 Thread Brian Murray
I was able to upgrade my laptop without an issue and packages also contained the #auto tag, so I'm not certain what went wrong here. ** Information type changed from Private to Public -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1505337] Re: update-manager crashed with aptdaemon.errors.AptDaemonError in commit(): org.debian.apt: kinit#auto isn't a valid package name

2015-10-12 Thread Brian Murray
The Error Tracker has a bucket with similar crashes: https://errors.ubuntu.com/problem/7ebdd3a47a22b40385f9eb92e6a329765708cf19 As expected only the 15.10 crashes contain #auto part. A report from 15.04 contains the following error: Traceback (most recent call last): File

[Bug 1505337] Re: update-manager crashed with aptdaemon.errors.AptDaemonError in commit(): org.debian.apt: kinit#auto isn't a valid package name

2015-10-12 Thread Brian Murray
The aptdaemon changes look complete and before the valid package name check we can see the auto_flag tag is stripped. 2070 for fullname in pkg_names: 2071 name, version, release = split_package_id(fullname) 2072 name, sep, auto_flag = name.partition("#") 2073