HJLDPP5JXMHXW63BGB2YMQXRTBCH3SFNMOV276Y2MG4VZEUWVQBQC
debug!("no remote channel named {:?}", self.channel);
return Ok(HashSet::new());
debug!(
"Local::download_changelist found no channel named {:?}",
self.channel
);
bail!("No channel {} found for remote {}", self.name, self.channel)
Err(_) if status.as_u16() == 404 => bail!("Repository `{}` not found (404)", self.url),
Err(_) => bail!("Http request failed with status code: {}", status)
Err(_) if status.as_u16() == 404 => {
bail!("Repository `{}` not found (404)", self.url)
}
Err(_) => bail!("Http request failed with status code: {}", status),