Git commit 202d532e9959cf15d432b0cac2ca85a45a838bcd
From 08/16/2013
added:
if (module_exists('views')) {
throw new DrupalUpdateException('The Views module must be downloaded and available for Media updates to proceed.');
}

So the hook uptade 7202 became:

function media_update_7202() {
module_enable(array('views'));
if (module_exists('views')) {
throw new DrupalUpdateException('The Views module must be downloaded and available for Media updates to proceed.');
}
}

And this is impossible to succeed, if you're trying to run hook update 7202 it will fail

CommentFileSizeAuthor
#1 2067963-fix-media-update-7202.patch478 bytesdave reid

Comments

dave reid’s picture

Status: Active » Fixed
StatusFileSize
new478 bytes

Thanks, and sorry we didn't notice this sooner. :(

Fixed in 7.x-2.x and will be included in the next 7200 update.
http://drupalcode.org/project/media.git/commit/d4992df

alexandrezia’s picture

Thanks for the quick fix!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.