Merge in changes from Gramps50

This commit is contained in:
prculley
2018-10-29 09:32:35 -05:00
102 changed files with 19135 additions and 4157 deletions

View File

@@ -80,7 +80,8 @@ def intltool_version():
Return the version of intltool as a tuple.
'''
if sys.platform == 'win32':
cmd = ["perl", "-e print qx(intltool-update --version) =~ m/(\d+.\d+.\d+)/;"]
cmd = ["perl",
r"-e print qx(intltool-update --version) =~ m/(\d+.\d+.\d+)/;"]
try:
ver, ret = subprocess.Popen(cmd ,stdout=subprocess.PIPE,
stderr=subprocess.PIPE, shell=True).communicate()