Skip to content

Commit d7e0c77

Browse files
committed
Got rid of false positives on virustotal.com detected for example.html
and wxpython.html files. Adding a closing for the META charset tag fixed the problem. See Issue 142.
1 parent cc8eaff commit d7e0c77

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

cefpython/cef3/linux/binaries_32bit/example.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<meta charset=utf-8>
4+
<meta charset=utf-8 />
55
<title>CEF Python 3 example (utf-8: ąś)</title>
66
<style>
77
body { font: 13px Segoe UI, Arial; line-height: 1.4em; }

cefpython/cef3/linux/binaries_32bit/wxpython.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<meta charset=utf-8>
4+
<meta charset=utf-8 />
55
<title>wxPython CEF 3 example (utf-8: ąś)</title>
66
<style>
77
body { font: 13px Segoe UI, Arial; line-height: 1.4em; }

cefpython/cef3/linux/binaries_64bit/example.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<meta charset=utf-8>
4+
<meta charset=utf-8 />
55
<title>CEF Python 3 example (utf-8: ąś)</title>
66
<style>
77
body { font: 13px Segoe UI, Arial; line-height: 1.4em; }

cefpython/cef3/linux/binaries_64bit/wxpython.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<meta charset=utf-8>
4+
<meta charset=utf-8 />
55
<title>wxPython CEF 3 example (utf-8: ąś)</title>
66
<style>
77
body { font: 13px Segoe UI, Arial; line-height: 1.4em; }

cefpython/cef3/windows/binaries/example.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<meta charset=utf-8>
4+
<meta charset=utf-8 />
55
<title>CEF Python 3 example (utf-8: ąś)</title>
66
<style>
77
body { font: 13px Tahoma; line-height: 1.4em; }

cefpython/cef3/windows/binaries/wxpython.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<meta charset=utf-8>
4+
<meta charset=utf-8 />
55
<title>wxPython CEF 3 example (utf-8: ąś)</title>
66
<style>
77
body { font: 13px Segoe UI, Arial; line-height: 1.4em; }

0 commit comments

Comments
 (0)