summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoozbeh Pournader <roozbeh@google.com>2014-07-31 22:22:46 -0700
committerJames Godfrey-Kittle <jamesgk@google.com>2015-04-16 12:16:21 -0700
commit844b53257db046c56b2b46e6dee4214f3f73ad0f (patch)
tree60f14c89cae5b0dde3b77bcfa4e91f8dbe8235df
parent3e47204bfaf1693cdefc9c3599445a367c5d7d2e (diff)
Fix a dictionary mistakenly specificed as a set.
-rwxr-xr-xscripts/touchup_for_android.py2
1 files changed, 1 insertions, 1 deletions
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