diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-04-02 11:50:34 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-04-02 11:50:34 +0200 |
| commit | b244e5c34f46556b5d978498b8b0749fdedbf319 (patch) | |
| tree | 8e9d69d6d44ba471d5c2fee71bccbb6a06b5c071 | |
| parent | 411df6fad78eb4e054475e53dc37241f4b2bfa8b (diff) | |
| download | allocbench-b244e5c34f46556b5d978498b8b0749fdedbf319.tar.gz allocbench-b244e5c34f46556b5d978498b8b0749fdedbf319.zip | |
remove flush from print_*
| -rw-r--r-- | src/allocator.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/allocator.py b/src/allocator.py index bb5106a..4e40ebf 100644 --- a/src/allocator.py +++ b/src/allocator.py @@ -30,7 +30,7 @@ class Allocator_Sources (object): self.reset_cmds = reset_cmds def run_cmds(self, function, cwd=srcdir): - print_status(function, self.name, "...", flush=True) + print_status(function, self.name, "...") cmds = getattr(self, function+"_cmds") @@ -68,7 +68,7 @@ class Allocator_Sources (object): stdout = subprocess.PIPE if src.globalvars.verbosity < 2 else None cwd = os.path.join(srcdir, self.name) - print_status("Patching", self.name, "...", flush=True) + print_status("Patching", self.name, "...") for patch in patches: with open(patch, "rb") as f: p = subprocess.run("patch -p1", shell=True, cwd=cwd, @@ -122,7 +122,7 @@ class Allocator (object): self.sources.patch(self.patches) if self.build_cmds: - print_status("Building", self.name, "...", flush=True) + print_status("Building", self.name, "...") stdout = subprocess.PIPE if src.globalvars.verbosity < 2 else None |
