| Index: client/utils/oauth.py
|
| diff --git a/client/utils/oauth.py b/client/utils/oauth.py
|
| index 480f0763b7cfc0528a22ec2759d3f9b2ee35278e..8e10da162021330b8449d751fd5353b77ba56c83 100644
|
| --- a/client/utils/oauth.py
|
| +++ b/client/utils/oauth.py
|
| @@ -23,7 +23,8 @@ import urlparse
|
| import webbrowser
|
|
|
| # All libraries here expect to find themselves in sys.path.
|
| -ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
| +ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(
|
| + __file__.decode(sys.getfilesystemencoding()))))
|
| sys.path.insert(0, os.path.join(ROOT_DIR, 'third_party'))
|
| sys.path.insert(0, os.path.join(ROOT_DIR, 'third_party', 'pyasn1'))
|
| sys.path.insert(0, os.path.join(ROOT_DIR, 'third_party', 'rsa'))
|
|
|