/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to olive/__init__.py

  • Committer: Dennis Miller
  • Date: 2008-08-03 00:08:00 UTC
  • Revision ID: millerdl@telusplanet.net-20080803000800-s92p2z2qb2p2nrel
Extension of fix from bug 244308 to cover removable drives - bug 250804

Show diffs side-by-side

added added

removed removed

Lines of Context:
1378
1378
        driveletters = []
1379
1379
        for drive in string.ascii_uppercase:
1380
1380
            if win32file.GetDriveType(drive+':') == win32file.DRIVE_FIXED or\
1381
 
                win32file.GetDriveType(drive+':') == win32file.DRIVE_REMOTE:
 
1381
                win32file.GetDriveType(drive+':') == win32file.DRIVE_REMOTE or\
 
1382
                win32file.GetDriveType(drive+':') == win32file.DRIVE_REMOVABLE:
1382
1383
                driveletters.append(drive+':')
1383
1384
        return driveletters
1384
1385