8000 Do not use smartquotes, since unicode breaks Windows · joshbenner/python-jsonpath-rw@dc92f95 · GitHub
[go: up one dir, main page]

Skip to content

Commit dc92f95

Browse files
committed
Do not use smartquotes, since unicode breaks Windows
1 parent 8a75429 commit dc92f95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# Build README.txt from README.md if not present, and if we are actually building for distribution to pypi
99
if not os.path.exists('README.txt') and 'sdist' in sys.argv:
10-
subprocess.call(['pandoc', '--to=rst', '--smart', '--output=README.txt', 'README.md'])
10+
subprocess.call(['pandoc', '--to=rst', '--output=README.txt', 'README.md'])
1111

1212
# But use the best README around; never fail - there are some Windows locales that seem to die on smartquotes,
1313
# even with the explicit encoding

0 commit comments

Comments
 (0)
0