Clean up trailing whitespace.

This commit is contained in:
Elliott Sales de Andrade
2016-05-18 05:47:34 -04:00
parent 15fcf1ed85
commit 28b722b92d
8 changed files with 119 additions and 119 deletions

View File

@@ -9,7 +9,7 @@
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
@@ -27,7 +27,7 @@ import unittest
import os
import glob
from test import test_util
test_util.path_append_parent()
test_util.path_append_parent()
def get_potfile(filename):
with open(filename, "r") as fp:
@@ -62,10 +62,10 @@ class TestPOT(unittest.TestCase):
found = True
if found:
self.assertFalse(pathfile[3:] not in excluded_files and
pathfile[3:] not in self.potfiles,
pathfile[3:] not in self.potfiles,
"'%s' is not in POTFILES.in" % (pathfile[3:],))
else:
self.assertTrue(True, "'%s' doesn't contain '%s'" %
self.assertTrue(True, "'%s' doesn't contain '%s'" %
(file, search))
else:
self.assertTrue(True, "'%s' doesn't exist" % file)
@@ -88,7 +88,7 @@ class TestMake(unittest.TestCase):
elif os.path.exists(makefile):
with open(makefile, "r") as fp:
lines = fp.read()
self.assertTrue(filename in lines, "'%s' not in %s/Makefile.in" %
self.assertTrue(filename in lines, "'%s' not in %s/Makefile.in" %
(filename, path))
else:
self.assertTrue(True, "no makefile in '%s'" % dir)
@@ -109,7 +109,7 @@ class TestGetText(unittest.TestCase):
found = False
for search in searches:
found = (search in lines) or found
self.assertTrue(found, "'%s' is in POTFILES.in but does not contain '%s'" %
self.assertTrue(found, "'%s' is in POTFILES.in but does not contain '%s'" %
(pofile, searches))
class TestDups(unittest.TestCase):
@@ -130,15 +130,15 @@ def suite1():
Suite of tests designed to see if that if one of a set of phrases
is in a file, then that file better be in POTFILES.in.
"""
suite = unittest.TestSuite()
suite = unittest.TestSuite()
for dir, subdir, files in os.walk('../../src'):
for file in files:
if glob.fnmatch.fnmatch(file,"*.py"):
suite.addTest(TestPOT('test_pot_py_%04d',
suite.addTest(TestPOT('test_pot_py_%04d',
dir, file, ["import gettext",
"import sgettext"]))
elif glob.fnmatch.fnmatch(file,"*.glade"):
suite.addTest(TestPOT('test_pot_glade_%04d',
suite.addTest(TestPOT('test_pot_glade_%04d',
dir, file, ["translatable=\"yes\""]))
if glob.fnmatch.fnmatch(file,"*.py"):
suite.addTest(TestMake('test_make_py_%04d', dir, file))
@@ -162,7 +162,7 @@ def suite2():
continue
if glob.fnmatch.fnmatch(potfile,"*.py"):
suite.addTest(TestGetText('test_gettext_py_%04d', potfile,
["import gettext",
["import gettext",
"from gramps.gen.ggettext",
"import sgettext"]))
elif glob.fnmatch.fnmatch(potfile,"*.glade"):

View File

@@ -25,7 +25,7 @@
"""
update_po.py for Gramps translations.
Examples:
Examples:
python update_po.py -t
Tests if 'gettext' and 'python' are well configured.
@@ -291,7 +291,7 @@ def DesktopParse(filename):
msgid "Genealogy System"
msgid "Gramps Genealogy System"
msgid ""
"Manage genealogical information,
"Manage genealogical information,
perform genealogical research and analysis"
'''
with open('../data/gramps.desktop.in.h', 'w') as desktop:
@@ -375,7 +375,7 @@ def main():
parser.add_argument("-c", "--clean",
action="store_true", dest="clean", default=False,
help="remove created files")
parser.add_argument("-p", "--pot",
parser.add_argument("-p", "--pot",
action="store_true", dest="catalog", default=False,
help="create a new catalog")
@@ -691,7 +691,7 @@ def check(args):
% {'lang.po': arg, 'txt': arg[:-3]})
os.system('''%(python)s ./check_po -s %(lang.po)s > %(lang)s.txt''' \
% {'python': pythonCmd, 'lang.po': arg, 'lang': arg[:-3]})
os.system('''%(msgfmt)s -c -v %(lang.po)s'''
os.system('''%(msgfmt)s -c -v %(lang.po)s'''
% {'msgfmt': msgfmtCmd, 'lang.po': arg})
def untranslated(arg):