openshot.bugs team mailing list archive
-
openshot.bugs team
-
Mailing list archive
-
Message #02540
[Bug 1008930] [NEW] Import from recent files makes troubles
Public bug reported:
Openshot version 1.4.2, installed on Debian wheezy from testing
repository.
The first import from recent files goes fine. But after it the import button doesn't work anymore.
Launching from terminal, it gives the following error:
on_tlbImportFiles_clicked called with self.GtkToolButton
Traceback (most recent call last):
File "/usr/lib/pymodules/python2.7/openshot/windows/MainGTK.py", line 1781, in on_tlbImportFiles_clicked
self.import_files_dialog = AddFiles.frmAddFiles(form=self, project=self.project)
File "/usr/lib/pymodules/python2.7/openshot/windows/AddFiles.py", line 47, in __init__
self.frmAddFiles.set_current_folder(preferences.Settings.app_state["import_folder"])
TypeError: Gtk.FileChooser.set_current_folder() argument 1 must be string, not None
Bug seems to be solved changing line 46 of openshot/windows/AddFiles.py , from:
if default_folder != "None":
to:
if default_folder != None:
** Affects: openshot
Importance: Undecided
Status: New
--
You received this bug notification because you are a member of OpenShot
Bugs, which is subscribed to OpenShot Video Editor.
https://bugs.launchpad.net/bugs/1008930
Title:
Import from recent files makes troubles
Status in OpenShot Video Editor:
New
Bug description:
Openshot version 1.4.2, installed on Debian wheezy from testing
repository.
The first import from recent files goes fine. But after it the import button doesn't work anymore.
Launching from terminal, it gives the following error:
on_tlbImportFiles_clicked called with self.GtkToolButton
Traceback (most recent call last):
File "/usr/lib/pymodules/python2.7/openshot/windows/MainGTK.py", line 1781, in on_tlbImportFiles_clicked
self.import_files_dialog = AddFiles.frmAddFiles(form=self, project=self.project)
File "/usr/lib/pymodules/python2.7/openshot/windows/AddFiles.py", line 47, in __init__
self.frmAddFiles.set_current_folder(preferences.Settings.app_state["import_folder"])
TypeError: Gtk.FileChooser.set_current_folder() argument 1 must be string, not None
Bug seems to be solved changing line 46 of openshot/windows/AddFiles.py , from:
if default_folder != "None":
to:
if default_folder != None:
To manage notifications about this bug go to:
https://bugs.launchpad.net/openshot/+bug/1008930/+subscriptions
Follow ups
References