Skip to content

Commit

Permalink
Remove psutil from debug information
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseBritto committed May 8, 2024
1 parent c57f52f commit 46a064a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
9 changes: 0 additions & 9 deletions NickvisionTubeConverter.GNOME/Views/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -451,15 +451,6 @@ private async void About(Gio.SimpleAction sender, EventArgs e)
{
debugInfo.AppendLine("yt-dlp not found");
}
try
{
dynamic psutil = Py.Import("psutil");
debugInfo.AppendLine($"psutil {psutil.__version__.As<string>()}");
}
catch
{
debugInfo.AppendLine("psutil not found");
}
}
});
var ffmpeg = Task.Run(() =>
Expand Down
9 changes: 0 additions & 9 deletions NickvisionTubeConverter.WinUI/Views/SettingsPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -349,15 +349,6 @@ private async void CopyDebugInformation(object sender, RoutedEventArgs e)
{
info += "\nyt-dlp not found";
}
try
{
dynamic psutil = Py.Import("psutil");
info += $"\npsutil {psutil.__version__.As<string>()}";
}
catch
{
info += "\npsutil not found";
}
}
});
var ffmpeg = Task.Run(() =>
Expand Down

0 comments on commit 46a064a

Please sign in to comment.