Skip to content

Commit

Permalink
Fix selection label
Browse files Browse the repository at this point in the history
  • Loading branch information
glubsy committed Jan 29, 2021
1 parent c9e48a5 commit 2baba3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qt/directories_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def loadResultsTriggered(self):

def loadDirectoriesTriggered(self):
title = tr("Select a directories file to load")
files = ";;".join([tr("dupeGuru Results (*.dupegurudirs)"), tr("All Files (*.*)")])
files = ";;".join([tr("dupeGuru Durectories (*.dupegurudirs)"), tr("All Files (*.*)")])
destination = QFileDialog.getOpenFileName(self, title, "", files)[0]
if destination:
self.app.model.load_directories(destination)
Expand Down

0 comments on commit 2baba3b

Please sign in to comment.