Changeset 1908
- Timestamp:
- 22/11/08 11:47:49 (7 weeks ago)
- svm:headrev:
cc3e1ea1-1e01-0410-8d68-8b121e83a9d5:11190- Location:
- freevo
- Files:
-
- 3 modified
-
ChangeLog (modified) (1 diff)
-
src/plugins/rom_drives.py (modified) (1 diff)
-
src/util/fileops.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
freevo/ChangeLog
r1907 r1908 43 43 * Fixed record server auto re-encode show title (B#2193796) 44 44 * Fixed record server generic record module to allow a group_type to be given (B#2017200) 45 * Fixed ROM drives mounting instead of umounting a disk, also umounts before an eject (B#2323270) 45 46 * Fixed RTVE video plug-in for changes to the web page (B#2196882) 46 47 * Fixed tv recordings_manager crashing when deleting a recording (B#2138835) -
freevo/src/plugins/rom_drives.py
r1885 r1908 515 515 pop = PopupBox(text=_('Ejecting disc in drive %s') % self.drivename) 516 516 pop.show() 517 if util.is_mounted(self.mountdir): 518 self.umount() 517 519 self.open_tray() 518 520 pop.destroy() -
freevo/src/util/fileops.py
r1834 r1908 429 429 global mounted_dirs 430 430 if os.path.ismount(dir): 431 p = subprocess.Popen([' mount', dir], stdout=PIPE, stderr=PIPE)431 p = subprocess.Popen(['umount', dir], stdout=PIPE, stderr=PIPE) 432 432 rc = p.wait() 433 433 so, se = p.communicate()
