Add missing imports, obsolete __main__ checks
svn: r22943
This commit is contained in:
parent
3600d3f3c4
commit
00d233a3c5
@ -24,6 +24,7 @@
|
||||
Unittest that tests that part of the merge process that influences other
|
||||
objects than the objects merging.
|
||||
"""
|
||||
from __future__ import print_function, unicode_literals
|
||||
|
||||
import unittest
|
||||
import time
|
||||
@ -38,6 +39,7 @@ import libxslt
|
||||
from libgrampsxml import GRAMPS_XML_VERSION
|
||||
from const import ROOT_DIR, VERSION, USER_PLUGINS
|
||||
import gen.lib
|
||||
from gen.lib import Name, Surname
|
||||
from gen.ggettext import sgettext as _
|
||||
|
||||
class CopiedDoc(object):
|
||||
@ -2221,10 +2223,4 @@ class FamilyMergeCheck(BaseMergeCheck):
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
if not os.path.isdir(os.path.join(USER_PLUGINS, 'CliMerge')):
|
||||
print('This program needs the third party "CliMerge" plugin.', file=sys.stderr)
|
||||
sys.exit(1)
|
||||
if not os.path.isdir(os.path.join(USER_PLUGINS, 'ExportRaw')):
|
||||
print('This program needs the third party "ExportRaw" plugin.', file=sys.stderr)
|
||||
sys.exit(1)
|
||||
unittest.main()
|
||||
|
Loading…
Reference in New Issue
Block a user