- #4289 [misc] Fix spelling and formatting for U.S. for es-us
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1.3.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
import sys | |
if len(sys.argv) < 3: | |
print("Must specify before and after tags. Example: 'python moment-gist.py 2.19.2 2.19.3'") | |
sys.exit(1) | |
BEFORE = sys.argv[1] | |
AFTER = sys.argv[2] | |
import re |
OlderNewer