forked from pool/rpmlint
Dirk Mueller
b0b29cefb3
* 0001-Python-3-compatibility-tweaks.patch - Change openstack- related users to non-prefixed variants, as they get renamed with the switch to Icehouse OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=244
12 lines
201 B
Python
12 lines
201 B
Python
#!/usr/bin/python
|
|
# vim:sw=4:et
|
|
|
|
import sys
|
|
|
|
for filename in sys.argv[1:]:
|
|
try:
|
|
compile(open(filename).read(), filename, 'exec')
|
|
except Exception as e:
|
|
print(e)
|
|
exit(1)
|