diff options
author | Maxim Monastirsky <momonasmon@gmail.com> | 2015-08-23 09:28:52 +0300 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2015-08-23 09:29:08 +0300 |
commit | 7d92b27aff3b4d1c59aef9866003f4d001c0fc25 (patch) | |
tree | b700f6867bfac07f749ecf19a65131e6049fa5cc /bin | |
parent | 7f4e0d6aa29da640408cf4cc84b2fc1a0c11f8ba (diff) |
Clean trailing whitespace
Change-Id: I3b4adb5ac75b9761ae058834e3e64779a07851c9
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/gbuild-to-ide | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide index 865a0b86f773..c12d48eb1f30 100755 --- a/bin/gbuild-to-ide +++ b/bin/gbuild-to-ide @@ -117,7 +117,7 @@ class GbuildParser: if libmatch: libname = self.libnames.get(state.ilib, None) if libname != None: - print('add Library: %s' % libname, end='\n') + print('add Library: %s' % libname, end='\n') self.libs.append( GbuildLib(libmatch.group(2), libname, libmatch.group(1), state.include, state.include_sys, state.defs, state.cxxobjects, @@ -128,7 +128,7 @@ class GbuildParser: if exematch: exename = self.exenames.get(state.target, None) if exename != None: - print('add Executable: %s' % exename, end='\n') + print('add Executable: %s' % exename, end='\n') self.exes.append( GbuildExe(exematch.group(2), exename, exematch.group(1), state.include, state.include_sys, state.defs, state.cxxobjects, |