# HG changeset patch # User David Barts # Date 1577518137 28800 # Node ID b2dab0667ec2efc39b4b456c22b3399b81e108a8 # Parent 0c8d787bc7e11d3de37370215b8ab9dde8dae367 Fix bug; new ws much like old. diff -r 0c8d787bc7e1 -r b2dab0667ec2 curlers.py --- a/curlers.py Fri Dec 27 15:53:22 2019 -0800 +++ b/curlers.py Fri Dec 27 23:28:57 2019 -0800 @@ -10,11 +10,11 @@ # V a r i a b l e s -# Quote types, as rune values -LSQUO = 0x2018 -APOS = RSQUO = 0x2019 -LDQUO = 0x201c -RDQUO = 0x201d +# Quote types +LSQUO = "\u2018" +APOS = RSQUO = "\u2019" +LDQUO = "\u201C" +RDQUO = "\u201D" # Words that start with an apostrophe. Cribbed from Wordpress. _ASTART = [ "'tain't", "'twere", "'twas", "'tis", "'twill", "'til",