diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-02-03 14:44:20 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-02-03 14:44:20 +0000 |
| commit | 9d8ef746e91d284979e382137c0d538e02f254b3 (patch) | |
| tree | 003093de5361d8ca3269246b3420079f9470f39c /cscript | |
| parent | 977871b05c41e3e089348b73834ebd0a766b456c (diff) | |
Fix incorrect 2->3 python conversion.
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -375,9 +375,9 @@ def package_rpm(target, cpu, version): else: cpu = "i686" - print('Looking in %s/RPMS/%s/*.rpm' % (topdir, cpu), file=f) + print('Looking in %s/RPMS/%s/*.rpm' % (topdir, cpu)) for p in glob.glob('%s/RPMS/%s/*.rpm' % (topdir, cpu)): - print('found %s' % p, file=f) + print('found %s' % p) rpms.append(os.path.abspath(p)) return rpms |
