Updater problems
I'm new to this forum and not a techie, but I LOVE Ubuntu and have been using it since 12.04.
Thanks to all who help here.
Since downloading 16.04, I get a "Failed to download repository information
" message when I use the Software Updater. I did
update-manager -d
in the Terminal, and it came back with:
/usr/bin/update-manager:28: PyGIWarning: Gtk was imported without specifying a version first. Use gi.require_version('Gtk', '3.0') before import to ensure that the right version gets loaded.
from gi.repository import Gtk
/usr/lib/python3/dist-packages/UpdateManager/UnitySupport.py:29: PyGIWarning: Dbusmenu was imported without specifying a version first. Use gi.require_version('Dbusmenu', '0.4') before import to ensure that the right version gets loaded.
from gi.repository import Dbusmenu, Unity
/usr/lib/python3/dist-packages/UpdateManager/UnitySupport.py:29: PyGIWarning: Unity was imported without specifying a version first. Use gi.require_version('Unity', '7.0') before import to ensure that the right version gets loaded.
from gi.repository import Dbusmenu, Unity
Can anyone tell me, in simple terms, what I need to do?
Thanks in anticipation.
EDIT:
Output of sudo apt update
Get:1 security.ubuntu.com/ubuntu xenial-security InRelease [92.2 kB]
Hit:2 ppa.launchpad.net/dhor/myway/ubuntu xenial InRelease
Hit:3 gb.archive.ubuntu.com/ubuntu xenial InRelease
Get:4 gb.archive.ubuntu.com/ubuntu xenial-updates InRelease [92.2 kB]
Ign:5 ppa.launchpad.net/mscore-ubuntu/mscore-stable/ubuntu xenial InRelease
Hit:6 ppa.launchpad.net/noobslab/apps/ubuntu xenial InRelease
Hit:7 ppa.launchpad.net/rebuntu16/avidemux+unofficial/ubuntu xenial InRelease
Hit:8 gb.archive.ubuntu.com/ubuntu xenial-backports InRelease
Ign:9 ppa.launchpad.net/stebbins/handbrake-releases/ubuntu xenial InRelease
Hit:10 ppa.launchpad.net/webupd8team/tor-browser/ubuntu xenial InRelease
Err:11 ppa.launchpad.net/mscore-ubuntu/mscore-stable/ubuntu xenial Release 404 Not Found
Err:12 ppa.launchpad.net/stebbins/handbrake-releases/ubuntu xenial Release 404 Not Found Reading package lists... Done
E: The repository 'ppa.launchpad.net/mscore-ubuntu/mscore-stable/ubuntu xenial Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: The repository 'ppa.launchpad.net/stebbins/handbrake-releases/ubuntu xenial Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
update-manager
bumped to the homepage by Community♦ 7 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm new to this forum and not a techie, but I LOVE Ubuntu and have been using it since 12.04.
Thanks to all who help here.
Since downloading 16.04, I get a "Failed to download repository information
" message when I use the Software Updater. I did
update-manager -d
in the Terminal, and it came back with:
/usr/bin/update-manager:28: PyGIWarning: Gtk was imported without specifying a version first. Use gi.require_version('Gtk', '3.0') before import to ensure that the right version gets loaded.
from gi.repository import Gtk
/usr/lib/python3/dist-packages/UpdateManager/UnitySupport.py:29: PyGIWarning: Dbusmenu was imported without specifying a version first. Use gi.require_version('Dbusmenu', '0.4') before import to ensure that the right version gets loaded.
from gi.repository import Dbusmenu, Unity
/usr/lib/python3/dist-packages/UpdateManager/UnitySupport.py:29: PyGIWarning: Unity was imported without specifying a version first. Use gi.require_version('Unity', '7.0') before import to ensure that the right version gets loaded.
from gi.repository import Dbusmenu, Unity
Can anyone tell me, in simple terms, what I need to do?
Thanks in anticipation.
EDIT:
Output of sudo apt update
Get:1 security.ubuntu.com/ubuntu xenial-security InRelease [92.2 kB]
Hit:2 ppa.launchpad.net/dhor/myway/ubuntu xenial InRelease
Hit:3 gb.archive.ubuntu.com/ubuntu xenial InRelease
Get:4 gb.archive.ubuntu.com/ubuntu xenial-updates InRelease [92.2 kB]
Ign:5 ppa.launchpad.net/mscore-ubuntu/mscore-stable/ubuntu xenial InRelease
Hit:6 ppa.launchpad.net/noobslab/apps/ubuntu xenial InRelease
Hit:7 ppa.launchpad.net/rebuntu16/avidemux+unofficial/ubuntu xenial InRelease
Hit:8 gb.archive.ubuntu.com/ubuntu xenial-backports InRelease
Ign:9 ppa.launchpad.net/stebbins/handbrake-releases/ubuntu xenial InRelease
Hit:10 ppa.launchpad.net/webupd8team/tor-browser/ubuntu xenial InRelease
Err:11 ppa.launchpad.net/mscore-ubuntu/mscore-stable/ubuntu xenial Release 404 Not Found
Err:12 ppa.launchpad.net/stebbins/handbrake-releases/ubuntu xenial Release 404 Not Found Reading package lists... Done
E: The repository 'ppa.launchpad.net/mscore-ubuntu/mscore-stable/ubuntu xenial Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: The repository 'ppa.launchpad.net/stebbins/handbrake-releases/ubuntu xenial Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
update-manager
bumped to the homepage by Community♦ 7 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
What is the output ofsudo apt-get update
?
– dadexix86
Apr 25 '16 at 8:54
If you read your error message you can see that you need to upgrade the older packages.Therefore, you must runsudo apt-get upgrade
before you upgrade to a new distro and it will , I guess, fix your issue.
– bhordupur
Apr 25 '16 at 9:52
Just ignore thePyGIWarning
. they appeared, becauseGObjectIntrospection
was updated.
– LittleByBlue
May 2 '16 at 17:31
add a comment |
I'm new to this forum and not a techie, but I LOVE Ubuntu and have been using it since 12.04.
Thanks to all who help here.
Since downloading 16.04, I get a "Failed to download repository information
" message when I use the Software Updater. I did
update-manager -d
in the Terminal, and it came back with:
/usr/bin/update-manager:28: PyGIWarning: Gtk was imported without specifying a version first. Use gi.require_version('Gtk', '3.0') before import to ensure that the right version gets loaded.
from gi.repository import Gtk
/usr/lib/python3/dist-packages/UpdateManager/UnitySupport.py:29: PyGIWarning: Dbusmenu was imported without specifying a version first. Use gi.require_version('Dbusmenu', '0.4') before import to ensure that the right version gets loaded.
from gi.repository import Dbusmenu, Unity
/usr/lib/python3/dist-packages/UpdateManager/UnitySupport.py:29: PyGIWarning: Unity was imported without specifying a version first. Use gi.require_version('Unity', '7.0') before import to ensure that the right version gets loaded.
from gi.repository import Dbusmenu, Unity
Can anyone tell me, in simple terms, what I need to do?
Thanks in anticipation.
EDIT:
Output of sudo apt update
Get:1 security.ubuntu.com/ubuntu xenial-security InRelease [92.2 kB]
Hit:2 ppa.launchpad.net/dhor/myway/ubuntu xenial InRelease
Hit:3 gb.archive.ubuntu.com/ubuntu xenial InRelease
Get:4 gb.archive.ubuntu.com/ubuntu xenial-updates InRelease [92.2 kB]
Ign:5 ppa.launchpad.net/mscore-ubuntu/mscore-stable/ubuntu xenial InRelease
Hit:6 ppa.launchpad.net/noobslab/apps/ubuntu xenial InRelease
Hit:7 ppa.launchpad.net/rebuntu16/avidemux+unofficial/ubuntu xenial InRelease
Hit:8 gb.archive.ubuntu.com/ubuntu xenial-backports InRelease
Ign:9 ppa.launchpad.net/stebbins/handbrake-releases/ubuntu xenial InRelease
Hit:10 ppa.launchpad.net/webupd8team/tor-browser/ubuntu xenial InRelease
Err:11 ppa.launchpad.net/mscore-ubuntu/mscore-stable/ubuntu xenial Release 404 Not Found
Err:12 ppa.launchpad.net/stebbins/handbrake-releases/ubuntu xenial Release 404 Not Found Reading package lists... Done
E: The repository 'ppa.launchpad.net/mscore-ubuntu/mscore-stable/ubuntu xenial Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: The repository 'ppa.launchpad.net/stebbins/handbrake-releases/ubuntu xenial Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
update-manager
I'm new to this forum and not a techie, but I LOVE Ubuntu and have been using it since 12.04.
Thanks to all who help here.
Since downloading 16.04, I get a "Failed to download repository information
" message when I use the Software Updater. I did
update-manager -d
in the Terminal, and it came back with:
/usr/bin/update-manager:28: PyGIWarning: Gtk was imported without specifying a version first. Use gi.require_version('Gtk', '3.0') before import to ensure that the right version gets loaded.
from gi.repository import Gtk
/usr/lib/python3/dist-packages/UpdateManager/UnitySupport.py:29: PyGIWarning: Dbusmenu was imported without specifying a version first. Use gi.require_version('Dbusmenu', '0.4') before import to ensure that the right version gets loaded.
from gi.repository import Dbusmenu, Unity
/usr/lib/python3/dist-packages/UpdateManager/UnitySupport.py:29: PyGIWarning: Unity was imported without specifying a version first. Use gi.require_version('Unity', '7.0') before import to ensure that the right version gets loaded.
from gi.repository import Dbusmenu, Unity
Can anyone tell me, in simple terms, what I need to do?
Thanks in anticipation.
EDIT:
Output of sudo apt update
Get:1 security.ubuntu.com/ubuntu xenial-security InRelease [92.2 kB]
Hit:2 ppa.launchpad.net/dhor/myway/ubuntu xenial InRelease
Hit:3 gb.archive.ubuntu.com/ubuntu xenial InRelease
Get:4 gb.archive.ubuntu.com/ubuntu xenial-updates InRelease [92.2 kB]
Ign:5 ppa.launchpad.net/mscore-ubuntu/mscore-stable/ubuntu xenial InRelease
Hit:6 ppa.launchpad.net/noobslab/apps/ubuntu xenial InRelease
Hit:7 ppa.launchpad.net/rebuntu16/avidemux+unofficial/ubuntu xenial InRelease
Hit:8 gb.archive.ubuntu.com/ubuntu xenial-backports InRelease
Ign:9 ppa.launchpad.net/stebbins/handbrake-releases/ubuntu xenial InRelease
Hit:10 ppa.launchpad.net/webupd8team/tor-browser/ubuntu xenial InRelease
Err:11 ppa.launchpad.net/mscore-ubuntu/mscore-stable/ubuntu xenial Release 404 Not Found
Err:12 ppa.launchpad.net/stebbins/handbrake-releases/ubuntu xenial Release 404 Not Found Reading package lists... Done
E: The repository 'ppa.launchpad.net/mscore-ubuntu/mscore-stable/ubuntu xenial Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: The repository 'ppa.launchpad.net/stebbins/handbrake-releases/ubuntu xenial Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
update-manager
update-manager
edited Apr 25 '16 at 11:34
Arronical
13.5k84892
13.5k84892
asked Apr 25 '16 at 8:48
user534936user534936
1115
1115
bumped to the homepage by Community♦ 7 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 7 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
What is the output ofsudo apt-get update
?
– dadexix86
Apr 25 '16 at 8:54
If you read your error message you can see that you need to upgrade the older packages.Therefore, you must runsudo apt-get upgrade
before you upgrade to a new distro and it will , I guess, fix your issue.
– bhordupur
Apr 25 '16 at 9:52
Just ignore thePyGIWarning
. they appeared, becauseGObjectIntrospection
was updated.
– LittleByBlue
May 2 '16 at 17:31
add a comment |
What is the output ofsudo apt-get update
?
– dadexix86
Apr 25 '16 at 8:54
If you read your error message you can see that you need to upgrade the older packages.Therefore, you must runsudo apt-get upgrade
before you upgrade to a new distro and it will , I guess, fix your issue.
– bhordupur
Apr 25 '16 at 9:52
Just ignore thePyGIWarning
. they appeared, becauseGObjectIntrospection
was updated.
– LittleByBlue
May 2 '16 at 17:31
What is the output of
sudo apt-get update
?– dadexix86
Apr 25 '16 at 8:54
What is the output of
sudo apt-get update
?– dadexix86
Apr 25 '16 at 8:54
If you read your error message you can see that you need to upgrade the older packages.Therefore, you must run
sudo apt-get upgrade
before you upgrade to a new distro and it will , I guess, fix your issue.– bhordupur
Apr 25 '16 at 9:52
If you read your error message you can see that you need to upgrade the older packages.Therefore, you must run
sudo apt-get upgrade
before you upgrade to a new distro and it will , I guess, fix your issue.– bhordupur
Apr 25 '16 at 9:52
Just ignore the
PyGIWarning
. they appeared, because GObjectIntrospection
was updated.– LittleByBlue
May 2 '16 at 17:31
Just ignore the
PyGIWarning
. they appeared, because GObjectIntrospection
was updated.– LittleByBlue
May 2 '16 at 17:31
add a comment |
1 Answer
1
active
oldest
votes
To update your system just run:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
1
The commands should beapt-get
, rather than justapt
– Arronical
Apr 25 '16 at 9:17
2
From 16.04 apt-get is beeing replaced with the newest apt. Both are fully working but apt-get will be deprecated soon. link
– velix
Apr 25 '16 at 9:37
I'd not realised, though the link appears to suggest thatapt-upgrade
is the same asapt-get dist-upgrade
so perhaps the last two commands do the same thing?
– Arronical
Apr 25 '16 at 9:41
:) Thanks for your help. The Software updater still says "Failed to download repository information" though. :/
– user534936
Apr 25 '16 at 9:51
Shortly the upgrade version only upgrades existing packages while dist-upgrade manage the addiction or removal of packages. See man apt-get for more accurate info.
– velix
Apr 25 '16 at 9:52
|
show 53 more comments
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f762284%2fupdater-problems%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
To update your system just run:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
1
The commands should beapt-get
, rather than justapt
– Arronical
Apr 25 '16 at 9:17
2
From 16.04 apt-get is beeing replaced with the newest apt. Both are fully working but apt-get will be deprecated soon. link
– velix
Apr 25 '16 at 9:37
I'd not realised, though the link appears to suggest thatapt-upgrade
is the same asapt-get dist-upgrade
so perhaps the last two commands do the same thing?
– Arronical
Apr 25 '16 at 9:41
:) Thanks for your help. The Software updater still says "Failed to download repository information" though. :/
– user534936
Apr 25 '16 at 9:51
Shortly the upgrade version only upgrades existing packages while dist-upgrade manage the addiction or removal of packages. See man apt-get for more accurate info.
– velix
Apr 25 '16 at 9:52
|
show 53 more comments
To update your system just run:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
1
The commands should beapt-get
, rather than justapt
– Arronical
Apr 25 '16 at 9:17
2
From 16.04 apt-get is beeing replaced with the newest apt. Both are fully working but apt-get will be deprecated soon. link
– velix
Apr 25 '16 at 9:37
I'd not realised, though the link appears to suggest thatapt-upgrade
is the same asapt-get dist-upgrade
so perhaps the last two commands do the same thing?
– Arronical
Apr 25 '16 at 9:41
:) Thanks for your help. The Software updater still says "Failed to download repository information" though. :/
– user534936
Apr 25 '16 at 9:51
Shortly the upgrade version only upgrades existing packages while dist-upgrade manage the addiction or removal of packages. See man apt-get for more accurate info.
– velix
Apr 25 '16 at 9:52
|
show 53 more comments
To update your system just run:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
To update your system just run:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
edited May 2 '16 at 17:29
Elder Geek
27.2k954127
27.2k954127
answered Apr 25 '16 at 9:11
velixvelix
3011213
3011213
1
The commands should beapt-get
, rather than justapt
– Arronical
Apr 25 '16 at 9:17
2
From 16.04 apt-get is beeing replaced with the newest apt. Both are fully working but apt-get will be deprecated soon. link
– velix
Apr 25 '16 at 9:37
I'd not realised, though the link appears to suggest thatapt-upgrade
is the same asapt-get dist-upgrade
so perhaps the last two commands do the same thing?
– Arronical
Apr 25 '16 at 9:41
:) Thanks for your help. The Software updater still says "Failed to download repository information" though. :/
– user534936
Apr 25 '16 at 9:51
Shortly the upgrade version only upgrades existing packages while dist-upgrade manage the addiction or removal of packages. See man apt-get for more accurate info.
– velix
Apr 25 '16 at 9:52
|
show 53 more comments
1
The commands should beapt-get
, rather than justapt
– Arronical
Apr 25 '16 at 9:17
2
From 16.04 apt-get is beeing replaced with the newest apt. Both are fully working but apt-get will be deprecated soon. link
– velix
Apr 25 '16 at 9:37
I'd not realised, though the link appears to suggest thatapt-upgrade
is the same asapt-get dist-upgrade
so perhaps the last two commands do the same thing?
– Arronical
Apr 25 '16 at 9:41
:) Thanks for your help. The Software updater still says "Failed to download repository information" though. :/
– user534936
Apr 25 '16 at 9:51
Shortly the upgrade version only upgrades existing packages while dist-upgrade manage the addiction or removal of packages. See man apt-get for more accurate info.
– velix
Apr 25 '16 at 9:52
1
1
The commands should be
apt-get
, rather than just apt
– Arronical
Apr 25 '16 at 9:17
The commands should be
apt-get
, rather than just apt
– Arronical
Apr 25 '16 at 9:17
2
2
From 16.04 apt-get is beeing replaced with the newest apt. Both are fully working but apt-get will be deprecated soon. link
– velix
Apr 25 '16 at 9:37
From 16.04 apt-get is beeing replaced with the newest apt. Both are fully working but apt-get will be deprecated soon. link
– velix
Apr 25 '16 at 9:37
I'd not realised, though the link appears to suggest that
apt-upgrade
is the same as apt-get dist-upgrade
so perhaps the last two commands do the same thing?– Arronical
Apr 25 '16 at 9:41
I'd not realised, though the link appears to suggest that
apt-upgrade
is the same as apt-get dist-upgrade
so perhaps the last two commands do the same thing?– Arronical
Apr 25 '16 at 9:41
:) Thanks for your help. The Software updater still says "Failed to download repository information" though. :/
– user534936
Apr 25 '16 at 9:51
:) Thanks for your help. The Software updater still says "Failed to download repository information" though. :/
– user534936
Apr 25 '16 at 9:51
Shortly the upgrade version only upgrades existing packages while dist-upgrade manage the addiction or removal of packages. See man apt-get for more accurate info.
– velix
Apr 25 '16 at 9:52
Shortly the upgrade version only upgrades existing packages while dist-upgrade manage the addiction or removal of packages. See man apt-get for more accurate info.
– velix
Apr 25 '16 at 9:52
|
show 53 more comments
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f762284%2fupdater-problems%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What is the output of
sudo apt-get update
?– dadexix86
Apr 25 '16 at 8:54
If you read your error message you can see that you need to upgrade the older packages.Therefore, you must run
sudo apt-get upgrade
before you upgrade to a new distro and it will , I guess, fix your issue.– bhordupur
Apr 25 '16 at 9:52
Just ignore the
PyGIWarning
. they appeared, becauseGObjectIntrospection
was updated.– LittleByBlue
May 2 '16 at 17:31