From 844b53257db046c56b2b46e6dee4214f3f73ad0f Mon Sep 17 00:00:00 2001 From: Roozbeh Pournader Date: Thu, 31 Jul 2014 22:22:46 -0700 Subject: Fix a dictionary mistakenly specificed as a set. --- scripts/touchup_for_android.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/touchup_for_android.py b/scripts/touchup_for_android.py index 2fa7896..ffed31a 100755 --- a/scripts/touchup_for_android.py +++ b/scripts/touchup_for_android.py @@ -67,7 +67,7 @@ def apply_temporary_fixes(font): fix_digit_widths(font) # Add cmap for U+2117 SOUND RECORDING COPYRIGHT - font_data.add_to_cmap(font, {0x2117, 'published'}) + font_data.add_to_cmap(font, {0x2117: 'published'}) # Fix version number from buildnumber.txt from datetime import date -- cgit v1.2.3