From f7491398a2e97c7c76d5a28cfb3b8ce1a0a1a580 Mon Sep 17 00:00:00 2001 From: Peter Wu Date: Fri, 26 Feb 2016 00:23:48 +0100 Subject: [PATCH] browse.py: Python 3 compatibility --- src/browse.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/browse.py b/src/browse.py index 081eb8c..bf85e4d 100755 --- a/src/browse.py +++ b/src/browse.py @@ -31,7 +31,10 @@ import socket import subprocess import sys import webbrowser -import urllib2 +try: + from urllib.request import unquote +except ImportError: + from urllib2 import unquote from collections import namedtuple Node = namedtuple('Node', ['inputs', 'rule', 'target', 'outputs']) @@ -154,7 +157,7 @@ def ninja_dump(target): class RequestHandler(httpserver.BaseHTTPRequestHandler): def do_GET(self): assert self.path[0] == '/' - target = urllib2.unquote(self.path[1:]) + target = unquote(self.path[1:]) if target == '': self.send_response(302) -- 2.7.4