summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2014-07-03 14:12:12 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-07-04 09:28:36 +0100
commit053857479c5e9ab394e07f2818abdf2e75f95121 (patch)
tree99abf7f711fc4fcc2f18b243b29a5e39edb0d1b4
parentedf8cb1713b3859074b40d15483306569b876a4f (diff)
downloadpoky-053857479c5e9ab394e07f2818abdf2e75f95121.tar.gz
bitbake: lib: fix no newline at end of file
Add a '\n' to the last line of the file to fix: No newline at end of file (Bitbake rev: 54f1359ed2e9d47980cd221b7b43ef56543fe06d) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/bb/pysh/sherrors.py2
-rw-r--r--bitbake/lib/prserv/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/pysh/sherrors.py b/bitbake/lib/bb/pysh/sherrors.py
index 1d5bd53b3a..49d0533de2 100644
--- a/bitbake/lib/bb/pysh/sherrors.py
+++ b/bitbake/lib/bb/pysh/sherrors.py
@@ -38,4 +38,4 @@ class ExitSignal(ShellError):
38 38
39class ReturnSignal(ShellError): 39class ReturnSignal(ShellError):
40 """Exit signal.""" 40 """Exit signal."""
41 pass \ No newline at end of file 41 pass
diff --git a/bitbake/lib/prserv/__init__.py b/bitbake/lib/prserv/__init__.py
index 0e0c98b9d8..c3cb73ad92 100644
--- a/bitbake/lib/prserv/__init__.py
+++ b/bitbake/lib/prserv/__init__.py
@@ -11,4 +11,4 @@ def init_logger(logfile, loglevel):
11 logging.basicConfig(level=numeric_level, filename=logfile, format=FORMAT) 11 logging.basicConfig(level=numeric_level, filename=logfile, format=FORMAT)
12 12
13class NotFoundError(Exception): 13class NotFoundError(Exception):
14 pass \ No newline at end of file 14 pass