mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-10 06:46:15 +01:00
util/archquery.py: remove unnecessary semicolon
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
This commit is contained in:
parent
2f197c698b
commit
b55d4d6b99
@ -25,7 +25,7 @@ class ArchQuery(packagequery.PackageQuery):
|
||||
#if self.magic == '\375\067zXZ':
|
||||
# self.pkgsuffix = 'pkg.tar.xz'
|
||||
fn = open('/dev/null', 'wb')
|
||||
pipe = subprocess.Popen(['tar', '-O', '-xf', self.__path, '.PKGINFO'], stdout=subprocess.PIPE, stderr=fn).stdout;
|
||||
pipe = subprocess.Popen(['tar', '-O', '-xf', self.__path, '.PKGINFO'], stdout=subprocess.PIPE, stderr=fn).stdout
|
||||
for line in pipe.readlines():
|
||||
line = line.rstrip().split(' = ', 2)
|
||||
if len(line) == 2:
|
||||
|
Loading…
Reference in New Issue
Block a user