Connect with us

Wisconsin

All clear given by Marquette police following investigation outside Church of the Gesu

Published

on

All clear given by Marquette police following investigation outside Church of the Gesu


A stretch of Wisconsin Avenue that travels through Marquette University in Milwaukee is back open Sunday afternoon following a police investigation.

Advertisement

All clear given by Marquette police following investigation outside Church of the Gesu

A stretch of Wisconsin Avenue that travels through Marquette University in Milwaukee is back open Sunday afternoon following a police investigation.

Advertisement

VERY NICE. >> THANK YOU EASTER BUNNY. >> THANK YOU. >> SO ALL RIGHT. THANK YOU STEPHANIE. AND BEFORE WE GO, WE WANT TO BRING YOU AN UPDATE TO THAT BREAKING NEWS. WE’VE BEEN FOLLOWING ALL SHOW MARQUETTE. POLICE SAY THE INVESTIGATION OUTSIDE THE CHURCH OF THE GESU HAS RESOLVED. GIVING THE ALL CLEAR

Advertisement

All clear given by Marquette police following investigation outside Church of the Gesu

A stretch of Wisconsin Avenue that travels through Marquette University in Milwaukee is back open Sunday afternoon following a police investigation.

Updated: 6:09 PM CDT Apr 5, 2026

Editorial Standards

Advertisement

An all clear has been given following a police investigation along a stretch of Wisconsin Avenue that travels through the campus of Marquette University in Milwaukee. Late Sunday afternoon, police could be seen focusing on a red Chevy Cruze parked outside the Church of the Gesu, and Wisconsin Avenue was closed between 11th and 13th streets. This was after Marquette University Police issued a safety alert asking people to avoid the area of 12th Street and Wisconsin Avenue.Shortly before 5 p.m., a WISN photojournalist was told by a Milwaukee Police Department officer to move back at the scene due to the bomb squad being called in. A K-9 was spotted smelling the car, as well as both around and inside the church. The K9 didn’t appear to find anything.Milwaukee police left around 5:30 p.m., after Wisconsin Avenue reopened. However, Marquette University police remained outside the church and around the Chevy Cruze. University police said shortly before 6 p.m. the issue had been resolved.12 News has reached out to Milwaukee and Marquette University police for details and will update this article as information becomes available.

An all clear has been given following a police investigation along a stretch of Wisconsin Avenue that travels through the campus of Marquette University in Milwaukee.

Advertisement

Late Sunday afternoon, police could be seen focusing on a red Chevy Cruze parked outside the Church of the Gesu, and Wisconsin Avenue was closed between 11th and 13th streets. This was after Marquette University Police issued a safety alert asking people to avoid the area of 12th Street and Wisconsin Avenue.

Shortly before 5 p.m., a WISN photojournalist was told by a Milwaukee Police Department officer to move back at the scene due to the bomb squad being called in. A K-9 was spotted smelling the car, as well as both around and inside the church. The K9 didn’t appear to find anything.

Milwaukee police left around 5:30 p.m., after Wisconsin Avenue reopened. However, Marquette University police remained outside the church and around the Chevy Cruze. University police said shortly before 6 p.m. the issue had been resolved.

Advertisement

12 News has reached out to Milwaukee and Marquette University police for details and will update this article as information becomes available.

Advertisement

`;
}

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

Advertisement

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

var location = { zip: window.DEFAULT_ZIPCODE };

Advertisement

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

Advertisement

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.wisn.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.wisn.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

Advertisement

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

Advertisement

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

`;
}

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

Advertisement

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

Advertisement

var location = { zip: window.DEFAULT_ZIPCODE };

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

Advertisement

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.wisn.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.wisn.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

Advertisement

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

Advertisement

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

Loading more articles…



Source link

Advertisement

Wisconsin

New Wisconsin AD Shawn Eichorst: Badgers Need ‘Texas Swagger’ And Less Humility

Published

on

New Wisconsin AD Shawn Eichorst: Badgers Need ‘Texas Swagger’ And Less Humility


New Wisconsin athletic director Shawn Eichorst, who spent the last eight years at Texas, believes his new and old schools have much in common.

Both are well-regarded research universities in state capitals that belong to major conferences and have relatively similar enrollments.

He also pointed out one difference.

Advertisement

“There’s swag at Texas, right?” Eichorst said Tuesday during his introductory news conference. “There’s 30 million people in Texas. We’ve got swag, too, but we have a little humility with that deal. We need to get our shoulders up. We need to feel good about what it is that we’re doing.”

Wisconsin could gain more of that Texas swagger if its football program gets back to winning the way it did the last time Eichorst was employed in Madison. Eichorst, who most recently worked as a deputy athletic director at Texas, received a five-year deal worth $1.6 million annually, with provisions for increases and incentives. He was hired 2½ months after Chris McIntosh left to become the Big Ten’s deputy commissioner for strategy.

Eichorst worked at Wisconsin from 2006-11 when Barry Alvarez was AD and Bret Bielema was leading the football program. He followed that up with stints as an athletic director at Miami (2011-12) and Nebraska (2012-17) before Texas athletic director Chris Del Conte hired him in 2018.

He returns to Wisconsin with the Badgers coming off back-to-back losing seasons in football, a notable fall for a program that had 22 straight winning seasons from 2002-23. Wisconsin coach Luke Fickell has gone 17-21 after posting a 53-10 record with one College Football Playoff appearance in his last five years at Cincinnati.

Eichorst hasn’t worked with Fickell before but said he’s encouraged by their initial conversations.

Advertisement

“Obviously he’s won every place he’s been,” Eichorst said. “My expectation is more of me than him, meaning I need to pour into him, learn more about his program, how he has things set up, how his athletes are taken care of, how we’re supporting that endeavor. And then we can figure out, as we move along, what that might look like.”

Football struggles led to Eichorst’s downfall the last time he was an athletic director.

He fired Nebraska coach Bo Pelini in 2014 and hired Mike Riley, who had gone 93-80 in 14 seasons at Oregon State. Eichorst was dismissed shortly after Nebraska suffered an early-season loss to Northern Illinois in 2017. Riley was fired at the end of that season after going 19-19 in three years.

When Eichorst’s hiring was announced last week, he spoke about how much he had grown from that Nebraska stint. Wisconsin interim chancellor Eric Wilcots led the search and has emphasized Eichorst’s accomplishments at Texas, which has won the Learfield Directors’ Cup all-sports standings five times in the last six years.

Texas ranked anywhere from fifth to ninth in the Directors’ Cup standings in the five years before Wilcots’ arrival. Texas’ football team went a combined 23-27 from 2014-17 but has made two College Football Playoff appearances in the last three years.

Advertisement

“Everybody looks at the end result of what we did at Texas,” Eichorst said. “When we got there in 2018, we weren’t very good in a lot of areas. And that didn’t change overnight.”

Eichorst said one thing that has caught his attention about Wisconsin is the overall quality of its head coaches.

“You’re going to be as good as your coaches,” Eichorst said. “That’s it. If you have an elite group of coaches who are working together and uniting and galvanizing and learning from one another and taking it out to their individual programs, I think you can start to build something special. I go back to Texas. We built a room of really elite head coaches and put them at the top of everything we did to help guide us.”

Eichorst said this job is particularly important to him because of his Wisconsin roots. He was born in Lone Rock, about 45 miles northwest of the Madison campus.

He treasured his previous stint at Wisconsin and says he believes this school “represents everything that is great about higher education and college athletics.”

Advertisement

“Nobody will work harder for Wisconsin athletics,” Eichorst said. “I love this state, and I love everything that it represents. The passion is there. You can see it. I don’t have to make it up. I’ve lived it. It’s in my heart.”

___

AP college sports: https://apnews.com/hub/college-sports



Source link

Advertisement
Continue Reading

Wisconsin

South Milwaukee, Wisconsin, officials in standoff with homeowner over year-round skeleton display

Published

on

South Milwaukee, Wisconsin, officials in standoff with homeowner over year-round skeleton display



The city of South Milwaukee, Wisconsin, has ordered a homeowner to take down his year-round giant skeleton display or face fines, but the homeowner is standing firm and refusing, even as the deadline to remove the display has passed.

Advertisement

Now there’s a skeleton standoff.

The city cited ordinance violations in their order for Sean Oster to dismantle the lawn decorations. The notice specifically references “large Halloween decorations being displayed not during the appropriate time of year.”

Oster was also ordered to make other improvements to his property.

But Oster has refused to take down the display, which is re-dressed as the year goes on and is currently sporting a Fourth of July theme. The Institute for Justice, a public interest law firm, has come to his aid, saying the city’s actions violate Oster’s First Amendment rights.

City administrators declined to comment, citing a pending investigation. Neighbors have been divided by the display; some say they’re fine with it, and think it brings fun and positivity to the neighborhood, but some others want to see it removed and say the lawn should be kept up better and more consistently.

Advertisement

Oster said he’s hoping to reach an agreement with the city, and said he’s corrected all other violations outside of the display. 



Source link

Continue Reading

Wisconsin

Former Wisconsin judge to be sentenced after conviction in obstructing arrest of Mexican immigrant

Published

on

Former Wisconsin judge to be sentenced after conviction in obstructing arrest of Mexican immigrant


Former Wisconsin Judge Hannah Dugan, who was convicted of felony obstruction for helping an immigrant evade federal officers in a case that highlighted President Donald Trump’s sweeping immigration crackdown, is scheduled to be sentenced Wednesday in federal court.

Dugan, 67, faces up to five years in prison after a jury convicted her on Dec. 19. She resigned from her position as a Milwaukee County circuit judge two weeks later amid threats of impeachment from Republican state lawmakers. She had been a judge for nine years.

Trump administration tried to make an example out of Milwaukee judge

The Trump administration brought the case against Dugan as the president pressed ahead with his sweeping immigration crackdown. Trump’s administration and his allies branded Dugan as an activist judge, while Dugan’s attorneys said during the trial that the Trump administration was trying to make an example out of Dugan to “crush her.”

Immigrant rights advocates and other Dugan allies argued that the administration was trying to use her case to blunt judicial opposition to Trump’s immigration efforts. The case became a bellwether nationally in the conflict between the judiciary and Trump’s immigration crackdown.

Republican U.S. Rep. Tom Tiffany, a fierce Trump loyalist running for Wisconsin governor, urged authorities to “lock her up” in a social media post following her conviction.

Dugan’s attorneys declined to comment ahead of the sentencing. Dugan did not testify during her trial, but her attorneys said she would be making comments to the court on Wednesday. That would be her first public comments on the case in more than a year.

Advertisement

Prosecutors push for ‘serious sentence’

Dugan’s attorneys argued that as a judge she was immune from prosecution. U.S. District Judge Lynn Adelman, who will hand down the sentence, has rejected attempts by Dugan to vacate her obstruction conviction.

Prosecutors argued in a sentencing memo filed last week that Dugan violated her oath as a judge and put both law enforcement and the public at risk.

“Judges are entrusted with tremendous discretion, but there is a line they cannot cross,” Executive Assistant U.S. Attorney Richard Frohling wrote. “The defendant crossed that line.”

Dugan’s attorneys argued she has “punished enough,” including resigning as a judge and facing threats of violence. They argued in her sentencing memo that she should not be sentenced to any jail time besides the part of one day she already spent in federal custody.

Under federal sentencing guidelines, the presentence report calls for 15 to 21 months behind bars. The judge is not bound by those guidelines.

Advertisement

Prosecutors said the average sentence for obstruction cases is 16 months, but they did not recommend a sentence.

“This was a serious offense, and it warrants a correspondingly serious sentence,” Frohling wrote.

No matter what she is sentenced to, Dugan’s attorneys said they plan to file an appeal.

Dugan’s case was a first for Wisconsin

Dugan’s case marked the first time that a state judge in Wisconsin went to trial on charges of obstructing immigration agents. She was found not guilty of concealing an individual to prevent arrest, a misdemeanor.

On April 18, 2025, immigration officers went to the Milwaukee County courthouse after learning 31-year-old Eduardo Flores-Ruiz had reentered the country illegally and was scheduled to appear before Dugan for a hearing in a state battery case.

Advertisement

Dugan confronted agents outside her courtroom and directed them to the chief judge’s office because she told them their administrative warrant wasn’t sufficient grounds to arrest Flores-Ruiz.

After the agents left, she led Flores-Ruiz and his attorney out a private jury door. Agents spotted Flores-Ruiz in the corridor, followed him outside and arrested him after a foot chase. A week later, FBI agents arrested Dugan in the courthouse, leading her outside in handcuffs.

Flores-Ruiz was deported in November.



Source link

Advertisement
Continue Reading
Advertisement

Trending