#1320 also remove nonprintable changelog chars in py3
Merged 5 years ago by mikem. Opened 5 years ago by mikem.

file modified
+2 -4
@@ -9698,10 +9698,8 @@ 

                  results.append({'date': cldate, 'date_ts': cltime, 'author': clname, 'text': cltext})

  

          results = _applyQueryOpts(results, queryOpts)

-         if six.PY2:

-             return koji.fixEncodingRecurse(results, remove_nonprintable=True)

-         else:

-             return results

+         return koji.fixEncodingRecurse(results, remove_nonprintable=True)

+ 

  

      def cancelBuild(self, buildID):

          """Cancel the build with the given buildID

This fixes an oversight from pr #1293

+1 yes, it should've been part of #1293

rebased onto a90d05f

5 years ago

Metadata Update from @mikem:
- Pull-request tagged with: testing-ready

5 years ago

Commit 7fae455 fixes this pull-request

Pull-Request has been merged by mikem

5 years ago