#524 Add support for debugsource
Merged by mikem. Opened by ignatenkobrain.
ignatenkobrain/koji debugsource  into  master

Download 524.patch

:thumbsup:

I would even remove that 'if' and just use 'return name.endswith...'

@tkopecek alright. fixed.

1 new commit added

  • make is_debuginfo() one-line

:thumbsup:

:thumbsup:

:thumbsup:

Syntax error in current version. Please check make test next time.

Also, would prefer to avoid backslash continuations unless it is the least worst option, as pep8 recommends. E.g.

    return (name.endswith('-debuginfo') or name.endswith('-debugsource') or
            '-debuginfo-' in name)

3 new commits added

  • make is_debuginfo() one-line
  • use if 'x' in s instead of str.find()
  • handle debugsource same way as debuginfo packages

Commit 658953af fixes this pull-request

Pull-Request has been merged by mikem@redhat.com

Metadata