Skip to content

Commit

Permalink
Fix app count
Browse files Browse the repository at this point in the history
  • Loading branch information
Teraskull committed May 29, 2020
1 parent 2a696ca commit c1516ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def uninstall(self):
for i in self.installed_apps:
if i.isChecked():
j += 1
buttonReply = QMessageBox.question(ui, 'PyDebloatX', f"Uninstall {j} app{'s' if self.installed_apps > 1 else ''}?\n\n{self.total_size:.2f} MB of of disk space will be available.", QMessageBox.Yes | QMessageBox.No)
buttonReply = QMessageBox.question(ui, 'PyDebloatX', f"Uninstall {j} app{'s' if j > 1 else ''}?\n\n{self.total_size:.2f} MB of of disk space will be available.", QMessageBox.Yes | QMessageBox.No)
if buttonReply == QMessageBox.Yes:
for i in self.installed_apps:
if i.isChecked():
Expand Down

0 comments on commit c1516ed

Please sign in to comment.