mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-23 02:16:01 +01:00
Removed unused variables from Task.py
This commit is contained in:
parent
6e1e59a999
commit
ff4b88c82f
@ -6,7 +6,7 @@
|
||||
Tasks represent atomic operations such as processes.
|
||||
"""
|
||||
|
||||
import os, shutil, re, tempfile, sys
|
||||
import os, re, sys
|
||||
from waflib import Utils, Logs, Errors
|
||||
|
||||
# task states
|
||||
@ -416,7 +416,6 @@ class Task(TaskBase):
|
||||
|
||||
def __str__(self):
|
||||
"string to display to the user"
|
||||
env = self.env
|
||||
src_str = ' '.join([a.nice_path() for a in self.inputs])
|
||||
tgt_str = ' '.join([a.nice_path() for a in self.outputs])
|
||||
if self.outputs: sep = ' -> '
|
||||
|
Loading…
Reference in New Issue
Block a user