Show More
@@ -36,9 +36,6 b' from __future__ import absolute_import' | |||
|
36 | 36 | |
|
37 | 37 | import os |
|
38 | 38 | |
|
39 | from mercurial import ( | |
|
40 | pycompat, | |
|
41 | ) | |
|
42 | 39 | from mercurial.utils import ( |
|
43 | 40 | procutil, |
|
44 | 41 | ) |
@@ -70,7 +67,7 b' class processlogger(object):' | |||
|
70 | 67 | } |
|
71 | 68 | # keyword arguments get prefixed with OPT_ and uppercased |
|
72 | 69 | env.update((b'OPT_%s' % key.upper(), value) |
|
73 |
for key, value in |
|
|
70 | for key, value in opts.items()) | |
|
74 | 71 | fullenv = procutil.shellenviron(env) |
|
75 | 72 | procutil.runbgcommand(script, fullenv, shell=True) |
|
76 | 73 |
General Comments 0
You need to be logged in to leave comments.
Login now