mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-18 05:58:19 +00:00
dmg.py: Compatibility with Python 3.2 and below
This commit is contained in:
parent
c6016b77c5
commit
2f0b76f178
|
@ -24,7 +24,7 @@ class Dmg:
|
|||
if self.config.verbose >= 1:
|
||||
print("EXECUTING {}".format(" ".join(shlex.quote(x) for x in process_args)))
|
||||
if not (self.config.verbose >= 2 and "stdout" not in kwargs):
|
||||
kwargs["stdout"] = subprocess.DEVNULL
|
||||
kwargs["stdout"] = open(os.devnull, 'wb')
|
||||
subprocess.check_call(process_args, *args, **kwargs)
|
||||
|
||||
class Dmgtools(Dmg):
|
||||
|
|
Loading…
Reference in a new issue