From: Robert Yang Date: Thu, 3 Jul 2014 06:12:12 +0000 (+0800) Subject: bitbake: lib: fix no newline at end of file X-Git-Tag: rev_ivi_2015_02_04~7582 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8bb96665bd5c83fefb632630c8777406ff4f5af0;p=scm%2Fbb%2Ftizen-distro.git 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 Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/pysh/sherrors.py b/bitbake/lib/bb/pysh/sherrors.py index 1d5bd53..49d0533 100644 --- a/bitbake/lib/bb/pysh/sherrors.py +++ b/bitbake/lib/bb/pysh/sherrors.py @@ -38,4 +38,4 @@ class ExitSignal(ShellError): class ReturnSignal(ShellError): """Exit signal.""" - pass \ No newline at end of file + pass diff --git a/bitbake/lib/prserv/__init__.py b/bitbake/lib/prserv/__init__.py index 0e0c98b..c3cb73a 100644 --- a/bitbake/lib/prserv/__init__.py +++ b/bitbake/lib/prserv/__init__.py @@ -11,4 +11,4 @@ def init_logger(logfile, loglevel): logging.basicConfig(level=numeric_level, filename=logfile, format=FORMAT) class NotFoundError(Exception): - pass \ No newline at end of file + pass