diff options
author | Kévin THIERRY <kevin.thierry@open.eurogiciel.org> | 2014-04-28 15:16:25 +0200 |
---|---|---|
committer | Kévin THIERRY <kevin.thierry@open.eurogiciel.org> | 2014-04-28 15:18:46 +0200 |
commit | 3512c8061e14cb883ab2db18e273d6a3ec6f5701 (patch) | |
tree | 29210bac3301a82814bc301cb565ec6fe0181920 /tools | |
parent | bb199edc33281856dacb9296107732aff8cc5265 (diff) | |
download | tizen-3512c8061e14cb883ab2db18e273d6a3ec6f5701.tar.gz tizen-3512c8061e14cb883ab2db18e273d6a3ec6f5701.tar.bz2 tizen-3512c8061e14cb883ab2db18e273d6a3ec6f5701.zip |
Remove useless variable
Signed-off-by: Kévin THIERRY <kevin.thierry@open.eurogiciel.org>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/spec2yocto.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/spec2yocto.py b/tools/spec2yocto.py index 9d915cfa5..7d011e7cf 100755 --- a/tools/spec2yocto.py +++ b/tools/spec2yocto.py @@ -2877,9 +2877,9 @@ class spec2yoctoCommandline( cmdln.Cmdln ): else: project = opts.project - res = working_dir = SPEC2YOCTO_CONFIG.get_working_dir( project ) - if res != 1: - print res + working_dir = SPEC2YOCTO_CONFIG.get_working_dir( project ) + if working_dir != 1: + print working_dir def main(): commandline = spec2yoctoCommandline() |