misc: fix lint

This commit is contained in:
Dylan Araps 2019-09-27 20:40:28 +03:00
parent 445b8fcbb6
commit 030dfe015d

View file

@ -26,7 +26,7 @@ def xrdb(xrdb_files=None):
if shutil.which("xrdb") and OS != "Darwin":
for file in xrdb_files:
subprocess.run(["xrdb", "-merge", "-quiet", file])
subprocess.Popen(["xrdb", "-merge", "-quiet", file])
def gtk():