diff options
author | Chris Larson <chris_larson@mentor.com> | 2011-03-08 11:54:45 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-31 12:23:19 +0100 |
commit | 626b96e255b6461e2bce209ecfc1ff110f65d54e (patch) | |
tree | 2e697ecdb311e26cee5550f3611beaa0faeb5f2b /bitbake | |
parent | af0163c2b671eecc0807d75d3556484b0ee187d8 (diff) | |
download | poky-626b96e255b6461e2bce209ecfc1ff110f65d54e.tar.gz |
codeparser: use ==, not 'is' to compare strings
(Bitbake rev: 8f5cf3a9975d8e6878e403be0e6edc22cc44f396)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/codeparser.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/codeparser.py b/bitbake/lib/bb/codeparser.py index c887a3ca08..84d1c09f21 100644 --- a/bitbake/lib/bb/codeparser.py +++ b/bitbake/lib/bb/codeparser.py | |||
@@ -21,13 +21,13 @@ def check_indent(codestr): | |||
21 | """If the code is indented, add a top level piece of code to 'remove' the indentation""" | 21 | """If the code is indented, add a top level piece of code to 'remove' the indentation""" |
22 | 22 | ||
23 | i = 0 | 23 | i = 0 |
24 | while codestr[i] in ["\n", " ", " "]: | 24 | while codestr[i] in ["\n", "\t", " "]: |
25 | i = i + 1 | 25 | i = i + 1 |
26 | 26 | ||
27 | if i == 0: | 27 | if i == 0: |
28 | return codestr | 28 | return codestr |
29 | 29 | ||
30 | if codestr[i-1] is " " or codestr[i-1] is " ": | 30 | if codestr[i-1] == "\t" or codestr[i-1] == " ": |
31 | return "if 1:\n" + codestr | 31 | return "if 1:\n" + codestr |
32 | 32 | ||
33 | return codestr | 33 | return codestr |