fontcustom 1.3.0 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c3398b6e31a2d23df76685528575c74d5f0d7739
4
- data.tar.gz: 8ff178040adf1fc60c82edf1cf69cc0e427b00cf
3
+ metadata.gz: 85393f70ef9449d5090ffb19a913dabe764fb59b
4
+ data.tar.gz: 781c8c82bfb28d11cd367432e800c224e211f075
5
5
  SHA512:
6
- metadata.gz: 2d4d505b543b0c4c6be525f7151b4a5601547ba4decc860e1e985dceaa41da9a143a8bfc350ce608d83dbf3f9ddee3c6a6650ce4cd286ed5fdf857815f032beb
7
- data.tar.gz: 58d1fc4dd1f3e4ee499adfb2a53252cd08330fb59c9661c2da523d9eac3999bb9e8a913bc9754497261080334224f66bb4dfd788d17474c2d1ee616db839f115
6
+ metadata.gz: e38e9a78191b62c3ca1b9c4feff9ba819ab7306f448719a5572f7be3e61212408a1f6402afc6128ea94117d4c55f30cbb96f4eb515f6eec8a8c43a8187902ee8
7
+ data.tar.gz: f8c94493f73344e717ae7862fddf0348d71c6c806fbafd11f24d23028e2523fe7a1bfa0dec1e1155901a3b3c438e6ba251c01234c1ace92b51eefd96a7c95056
@@ -1,3 +1,7 @@
1
+ ## 1.3.1 (12/28/2013)
2
+
3
+ * Fixes syntax error in generate.py that affects Python 2.6
4
+
1
5
  ## 1.3.0 (12/24/2013)
2
6
 
3
7
  **If upgrading from 1.2.0, delete your old `.fontcustom-manifest.json` and output directories first.**
@@ -14,12 +14,13 @@ try:
14
14
  parser = argparse.ArgumentParser()
15
15
  parser.add_argument('manifest', help='Path to .fontcustom-manifest.json')
16
16
  args = parser.parse_args()
17
+ manifestfile = open(args.manifest, 'r+')
17
18
  except ImportError:
18
19
  import optparse
19
20
  parser = optparse.OptionParser()
20
21
  (nothing, args) = parser.parse_args()
22
+ manifestfile = open(args[0], 'r+')
21
23
 
22
- manifestfile = open(args.manifest, 'r+')
23
24
  manifest = json.load(manifestfile)
24
25
  options = manifest['options']
25
26
 
@@ -1,3 +1,3 @@
1
1
  module Fontcustom
2
- VERSION = "1.3.0"
2
+ VERSION = "1.3.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fontcustom
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kai Zau
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-12-24 00:00:00.000000000 Z
12
+ date: 2013-12-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: json