~dobey/ubuntuone-client/fix-unicode-path

« back to all changes in this revision

Viewing changes to bin/u1sdtool

- Avoid importing gireactor and dbus on darwin as well as on win32. (LP: #1018125)

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
import sys
32
32
 
33
 
if sys.platform != 'win32':
 
33
if sys.platform not in ('win32', 'darwin'):
34
34
    try:
35
35
        from twisted.internet import gireactor
36
36
        gireactor.install()