Fix invocation of the image cat script as kitty icat

This commit is contained in:
Kovid Goyal
2017-10-05 17:19:17 +05:30
parent 664975b707
commit 49aeae4aad
2 changed files with 4 additions and 4 deletions

View File

@@ -7,7 +7,7 @@ sys.debug_gl = '--debug-kitty-gl' in sys.argv
if len(sys.argv) > 1 and sys.argv[1] == 'icat':
from kitty.icat import main
main()
main(sys.argv[1:])
else:
from kitty.main import main
main()