| Index: gclient_utils.py
 | 
| diff --git a/gclient_utils.py b/gclient_utils.py
 | 
| index 34f3db84719e2013ae8168a147eeb4eea968dca7..b413a88eb8a5d9150126e057c3ed7fd67787fe02 100644
 | 
| --- a/gclient_utils.py
 | 
| +++ b/gclient_utils.py
 | 
| @@ -78,7 +78,8 @@ class PrintableObject(object):
 | 
|  
 | 
|  def FileRead(filename, mode='rU'):
 | 
|    with open(filename, mode=mode) as f:
 | 
| -    # codecs.open() has different behavior than open() on python 2.6.
 | 
| +    # codecs.open() has different behavior than open() on python 2.6 so use
 | 
| +    # open() and decode manually.
 | 
|      return f.read().decode('utf-8')
 | 
|  
 | 
|  
 | 
| 
 |