diff options
Diffstat (limited to 'hypervideo_gui.py')
-rw-r--r-- | hypervideo_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hypervideo_gui.py b/hypervideo_gui.py index 5cc9c52..ec5ae85 100644 --- a/hypervideo_gui.py +++ b/hypervideo_gui.py @@ -272,7 +272,7 @@ class App(QMainWindow): ''' file = str(QFileDialog.getExistingDirectory(self, "Select Directory")) - if len(file) > 0: + if file: self.addItemToDownloadsCombobox(file) else: self.statusBar().showMessage('Select a folder!') |