Whitespace fixes

This patch fixes some issues with inconsistent use of whitespace. It
only modifies lines that do not contain any code to not break git blame
too much.

Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
Lubomír Sedlář 2019-05-31 09:31:01 +02:00
parent 68115f3502
commit c55ed742cd
5 changed files with 14 additions and 13 deletions

View File

@ -87,6 +87,7 @@ def is_genisoimage_needed(conf):
def is_createrepo_c_needed(conf): def is_createrepo_c_needed(conf):
return conf.get('createrepo_c', True) return conf.get('createrepo_c', True)
# The first element in the tuple is package name expected to have the # The first element in the tuple is package name expected to have the
# executable (2nd element of the tuple). The last element is an optional # executable (2nd element of the tuple). The last element is an optional
# function that should determine if the tool is required based on # function that should determine if the tool is required based on

View File

@ -1450,8 +1450,6 @@ class Pungi(PungiBase):
def doCreaterepo(self, comps=True): def doCreaterepo(self, comps=True):
"""Run createrepo to generate repodata in the tree.""" """Run createrepo to generate repodata in the tree."""
compsfile = None compsfile = None
if comps: if comps:
compsfile = os.path.join(self.workdir, '%s-%s-comps.xml' % (self.config.get('pungi', 'family'), self.config.get('pungi', 'version'))) compsfile = os.path.join(self.workdir, '%s-%s-comps.xml' % (self.config.get('pungi', 'family'), self.config.get('pungi', 'version')))
@ -1604,6 +1602,7 @@ class Pungi(PungiBase):
# Create a function to use with os.path.walk to sum the files # Create a function to use with os.path.walk to sum the files
# basepath is used to make the sum output relative # basepath is used to make the sum output relative
sums = [] sums = []
def getsum(basepath, dir, files): def getsum(basepath, dir, files):
for file in files: for file in files:
path = os.path.join(dir, file) path = os.path.join(dir, file)
@ -1690,8 +1689,6 @@ class Pungi(PungiBase):
def doGetRelnotes(self): def doGetRelnotes(self):
"""Get extra files from packages in the tree to put in the topdir of """Get extra files from packages in the tree to put in the topdir of
the tree.""" the tree."""
docsdir = os.path.join(self.workdir, 'docs') docsdir = os.path.join(self.workdir, 'docs')
relnoterpms = self.config.get('pungi', 'relnotepkgs').split() relnoterpms = self.config.get('pungi', 'relnotepkgs').split()

View File

@ -93,5 +93,6 @@ class TestExclusiveExcludeArch(unittest.TestCase):
self.assertEqual(log.mock_calls, self.assertEqual(log.mock_calls,
[mock.call.debug("Excluding (EXCLUSIVEARCH: ['aarch64']): pkg.rpm")]) [mock.call.debug("Excluding (EXCLUSIVEARCH: ['aarch64']): pkg.rpm")])
if __name__ == "__main__": if __name__ == "__main__":
unittest.main() unittest.main()

View File

@ -558,5 +558,6 @@ class OSBSThreadTest(helpers.PungiTestCase):
self._assertCorrectMetadata(scratch=True) self._assertCorrectMetadata(scratch=True)
self._assertRepoFile() self._assertRepoFile()
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()

View File

@ -65,6 +65,7 @@ class EqualsAny(object):
def __repr__(self): def __repr__(self):
return u'ANYTHING' return u'ANYTHING'
ANYTHING = EqualsAny() ANYTHING = EqualsAny()