Merge branch 'stable-2.14' into stable-2.15

* stable-2.14:
  Update Gerrit API to 2.14.7
  project.py: Python 3 compatibility

Change-Id: Iacf5a059ce9d3e3a00b2006fb1126f959e800b66
diff --git a/tools/eclipse/project.py b/tools/eclipse/project.py
index 8ae67c5..2271f8d 100755
--- a/tools/eclipse/project.py
+++ b/tools/eclipse/project.py
@@ -188,7 +188,7 @@
 try:
   name = args.name if args.name else path.basename(ROOT)
   gen_project(name)
-  gen_classpath(retrieve_ext_location())
+  gen_classpath(retrieve_ext_location().decode('utf-8'))
 
 except KeyboardInterrupt:
   print('Interrupted by user', file=sys.stderr)