diff options
| author | Adrien Tétar | 2015-09-29 10:44:58 +0200 | 
|---|---|---|
| committer | Adrien Tétar | 2015-09-29 11:48:28 +0200 | 
| commit | 2675fa8275a60bdd613de40e5d61f9947b856152 (patch) | |
| tree | 65a367c80689f65043b079c5767a6e47875f11c6 /Lib/defconQt/__main__.py | |
| parent | 6b4593337cd4626b5b780d2774013063f537e793 (diff) | |
| download | trufont-2675fa8275a60bdd613de40e5d61f9947b856152.tar.bz2 | |
fontView,glyphView: generalize copy/paste and use app-wide clipboard
Diffstat (limited to 'Lib/defconQt/__main__.py')
| -rw-r--r-- | Lib/defconQt/__main__.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/Lib/defconQt/__main__.py b/Lib/defconQt/__main__.py index 8678906..ffcef50 100644 --- a/Lib/defconQt/__main__.py +++ b/Lib/defconQt/__main__.py @@ -9,8 +9,8 @@ from PyQt5.QtWidgets import QApplication  if len(sys.argv) < 2:      share_dir = os.path.join(os.path.dirname(__file__), '..', '..', 'share')      ufoFile = os.path.join(share_dir, 'fonts', 'subsets', 'Merriweather-Bold-Subset-nop.ufo') -    print ('Usage: %s <input.ufo>' % sys.argv[0]) -    print ('Loading default sample font: "%s"' % ufoFile) +    print('Usage: %s <input.ufo>' % sys.argv[0]) +    print('Loading default sample font: "%s"' % ufoFile)  else:      ufoFile = sys.argv[1]      print('Loading font file: "%s"' % ufoFile) | 
