Fix VERSION_DIR path

svn: r21634
This commit is contained in:
Nick Hall 2013-03-12 17:01:21 +00:00
parent 2299b7fe5d
commit 7a70853eb5

View File

@ -122,7 +122,8 @@ if sys.version_info[0] < 3:
else:
pass
VERSION_DIR = os.path.join(HOME_DIR, "gramps%s" % major_version)
VERSION_DIR = os.path.join(
HOME_DIR, "gramps%s%s" % (VERSION_TUPLE[0], VERSION_TUPLE[1]))
CUSTOM_FILTERS = os.path.join(VERSION_DIR, "custom_filters.xml")
REPORT_OPTIONS = os.path.join(HOME_DIR, "report_options.xml")