diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-07-14 23:26:00 +0200 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-03 14:06:40 +0100 |
commit | 0e3fc6dff27ca1ee5a7512f968c3f9d5cfc2da6d (patch) | |
tree | f1507ea7fd4b415923f30a6c6074bc52d45d171e /bitbake/lib | |
parent | 191a2883492841f30bbc21ab7bf4e4a0810d0760 (diff) | |
download | openembedded-core-0e3fc6dff27ca1ee5a7512f968c3f9d5cfc2da6d.tar.gz openembedded-core-0e3fc6dff27ca1ee5a7512f968c3f9d5cfc2da6d.tar.bz2 openembedded-core-0e3fc6dff27ca1ee5a7512f968c3f9d5cfc2da6d.tar.xz openembedded-core-0e3fc6dff27ca1ee5a7512f968c3f9d5cfc2da6d.zip |
*: cosmetic whitespace removal
(Bitbake rev: 2ed36a3d57de25e1af31d657a7b0b14857e5056a)
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/fetch/__init__.py | 2 | ||||
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py index d5ec99bbb..46957670a 100644 --- a/bitbake/lib/bb/fetch/__init__.py +++ b/bitbake/lib/bb/fetch/__init__.py @@ -419,7 +419,7 @@ def runfetchcmd(cmd, d, quiet = False): print(line, end=' ') output += line - status = stdout_handle.close() or 0 + status = stdout_handle.close() or 0 signal = status >> 8 exitstatus = status & 0xff diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index f8440dbcc..bdd806a2c 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -811,7 +811,7 @@ class RunQueue: return False iscurrent = True - t1 = os.stat(stampfile)[stat.ST_MTIME] + t1 = os.stat(stampfile)[stat.ST_MTIME] for dep in self.runq_depends[task]: if iscurrent: fn2 = self.taskData.fn_index[self.runq_fnid[dep]] |