diff options
-rw-r--r-- | Changes | 2 | ||||
-rw-r--r-- | lib/ManaTools/Version.pm | 4 | ||||
-rwxr-xr-x | modules/contribfinder.py | 9 |
3 files changed, 9 insertions, 6 deletions
@@ -1,3 +1,5 @@ +1.2.1 Sat 28 Mar 2020 + - Fixed contribfinder to work with python 3 1.2.0 - fixed a crash on rpmdragora for gpg keys group - fixed mana --help (utf8) (thanks to Masanori Kakura) diff --git a/lib/ManaTools/Version.pm b/lib/ManaTools/Version.pm index 2a2b2223..0d96c628 100644 --- a/lib/ManaTools/Version.pm +++ b/lib/ManaTools/Version.pm @@ -58,12 +58,12 @@ use Moose::Role; =head1 VERSION - Version 1.2.0 + Version 1.2.1 See Changes for details =cut -our $VERSION = '1.2.0'; +our $VERSION = '1.2.1'; has 'Version' => ( is => 'ro', diff --git a/modules/contribfinder.py b/modules/contribfinder.py index bfe06b3c..3eb82317 100755 --- a/modules/contribfinder.py +++ b/modules/contribfinder.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # vim: set et ts=4 sw=4: #coding:utf-8 ############################################################################# @@ -79,7 +79,8 @@ class mainGui(): resp, content = h.request(dlurl, 'GET') if resp.status != 200: raise Exception('Package cannot be found in maintdb') - retoutput = content.rstrip('\n') + str_content = content.decode('utf-8') + retoutput = str_content.rstrip('\n') except: retoutput = "No contributors found" return retoutput @@ -97,7 +98,7 @@ class mainGui(): self.dialog.destroy() break if event.widget() == self.btnLookAtIt: - if(cmp(self.contributor.strip(),"")!=0): + if(self.contributor.strip()): url = 'http://people.mageia.org/u/%s.html' % self.contributor os.system("www-browser %s" % url) if event.widget() == self.btnsearch: @@ -105,7 +106,7 @@ class mainGui(): #self.rtinformations.setValue("Loading...") #self.dialog.doneMultipleChanges() self.contributor = self.stripErrMessages(self.queryMaintDB(self.txtpkgname.value())) - if(cmp(self.contributor.strip(),"")!=0): + if(self.contributor.strip()): outstr = 'Maintainer: <a href="http://people.mageia.org/u/%s.html">%s</a><br />e-mail: <a href="mailto:%s@mageia.org">%s@mageia.org</a>' % (self.contributor,self.contributor,self.contributor,self.contributor) else: outstr = '' |