diff --git a/workspaces.py b/workspaces.py index c7b22f2..99b88ab 100755 --- a/workspaces.py +++ b/workspaces.py @@ -800,7 +800,7 @@ def remove_workspace( if status.dirty: problems.append(f"{wt.name}: dirty working tree on '{branch}'") - # Only care about "unpushe­d commits" if the branch is NOT integrated into main. + # Only care about "unpushed commits" if the branch is NOT integrated into main. if repo is not None and branch != "?" and not integrated: if has_unpushed_commits(wt, branch): problems.append(f"{wt.name}: unpushed commits on '{branch}'")