Merge branch 'master' of git://git.assembla.com/fpdb

This commit is contained in:
Eratosthenes 2011-02-03 10:23:54 -05:00
commit 2dcb9fc13b
4 changed files with 6 additions and 3 deletions

View File

@ -27,8 +27,8 @@ Approx. 200 changesets (excl. merges) have gone in since 0.21-rc1. Some of the i
Where to get it Where to get it
=============== ===============
Please note that you will have to either recreate your database or use a new one if you're updating from 0.21-rc1 or older. Please note that you will have to either recreate your database or use a new one if you're updating from 0.21-rc1 or older. Config files from 0.20 and later should work. Please report if you have problems with config files from that version or later.
Config files from 0.20 and later should work. Please report if you have problems with config files from that version or later. You can find checksums (MD5 and SHA512) in the download folder.
To download: http://sourceforge.net/projects/fpdb/files/fpdb/Snapshots/ To download: http://sourceforge.net/projects/fpdb/files/fpdb/Snapshots/
To be notified by email of new versions you can subscribe to our announce mailing list here: https://lists.sourceforge.net/lists/listinfo/fpdb-announce To be notified by email of new versions you can subscribe to our announce mailing list here: https://lists.sourceforge.net/lists/listinfo/fpdb-announce

View File

@ -53,7 +53,8 @@ class Table(Table_Window):
title = d[kCGWindowName] title = d[kCGWindowName]
if self.check_bad_words(title): continue if self.check_bad_words(title): continue
self.number = int(d[kCGWindowNumber]) self.number = int(d[kCGWindowNumber])
self.title = title; return self.title self.title = title
return self.title
if self.number is None: if self.number is None:
return None return None

View File

@ -30,6 +30,7 @@ The generated file can then replace heroname.xml (if all is well).
######################################################################## ########################################################################
#TODO gettextify
# Standard Library modules # Standard Library modules
import os import os

View File

@ -9,6 +9,7 @@
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License. # the Free Software Foundation, version 3 of the License.
# #
# TODO gettextify usage print
import L10n import L10n
_ = L10n.get_translation() _ = L10n.get_translation()