/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: Jelmer Vernooij
  • Author(s): Kevin Light
  • Date: 2008-07-01 21:56:25 UTC
  • Revision ID: jelmer@samba.org-20080701215625-udvespwg6srjo252
Fix network drives listing in olive-gtk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1489
1489
        
1490
1490
        driveletters = []
1491
1491
        for drive in string.ascii_uppercase:
1492
 
            if win32file.GetDriveType(drive+':') == win32file.DRIVE_FIXED:
 
1492
            if win32file.GetDriveType(drive+':') == win32file.DRIVE_FIXED or\
 
1493
                win32file.GetDriveType(drive+':') == win32file.DRIVE_REMOTE:
1493
1494
                driveletters.append(drive+':')
1494
1495
        return driveletters
1495
1496