haruhi-dl/bin/haruhi-dl
2021-02-25 19:47:18 +01:00

11 lines
236 B
Python
Executable file

#!/usr/bin/env python3
import sys
if __name__ == '__main__':
if sys.version_info[0] == 2:
sys.exit('haruhi-dl no longer works on Python 2, use Python 3 instead')
else:
import haruhi_dl
haruhi_dl.main()