]> Cypherpunks.ru repositories - gostls13.git/blobdiff - lib/codereview/codereview.py
[dev.cc] all: merge dev.power64 (7667e41f3ced) into dev.cc
[gostls13.git] / lib / codereview / codereview.py
index 263385b79f991090a6dc4abcc0dc5adad39d4286..9181f1df3cde0eb8418bcd3e1cac40e70e1fd10a 100644 (file)
@@ -1631,7 +1631,7 @@ def clpatch_or_undo(ui, repo, clname, opts, mode):
        try:
                cmd = subprocess.Popen(argv, shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None, close_fds=sys.platform != "win32")
        except:
-               return "hgapplydiff: " + ExceptionDetail() + "\nInstall hgapplydiff with:\n$ go get code.google.com/p/go.codereview/cmd/hgapplydiff\n"
+               return "hgapplydiff: " + ExceptionDetail() + "\nInstall hgapplydiff with:\n$ go get golang.org/x/codereview/cmd/hgapplydiff\n"
 
        out, err = cmd.communicate(patch)
        if cmd.returncode != 0 and not opts["ignore_hgapplydiff_failure"]:
@@ -3451,6 +3451,7 @@ class FakeMercurialUI(object):
        def __init__(self):
                self.quiet = True
                self.output = ''
+               self.debugflag = False
        
        def write(self, *args, **opts):
                self.output += ' '.join(args)