Skip to content

Commit ccb74aa

Browse files
committed
avoid pythonscript\installer\updateLatestVersion.py:3: SyntaxWarning: invalid escape sequence '\.'
versionRegex = re.compile('^\\s*Latest Version: ([0-9]+\.){3}[0-9]+\\s*')
1 parent d955be8 commit ccb74aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

installer/updateLatestVersion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys, re
22

3-
versionRegex = re.compile('^\\s*Latest Version: ([0-9]+\.){3}[0-9]+\\s*')
3+
versionRegex = re.compile('^\\s*Latest Version: ([0-9]+\\.){3}[0-9]+\\s*')
44
header = open(sys.argv[1], "r")
55
result = ''
66
for line in header:

0 commit comments

Comments
 (0)