1
0

fix prev commit: name collisions with _()

This commit is contained in:
SomberNight
2017-09-24 04:44:11 +02:00
parent f1a4f998d2
commit e43481aafc
6 changed files with 7 additions and 7 deletions

View File

@@ -377,7 +377,7 @@ class SettingsDialog(WindowModalDialog):
def change_homescreen():
from PIL import Image # FIXME
dialog = QFileDialog(self, _("Choose Homescreen"))
filename, _ = dialog.getOpenFileName()
filename, __ = dialog.getOpenFileName()
if filename:
im = Image.open(str(filename))
if im.size != (hs_cols, hs_rows):