The previous fix has a type (set vs sed) and was wrong since it
[polysh.git] / bin / polysh
blobc6bec27627d2de6e8db6bb3cc998e767682cc95e
1 #!/usr/bin/env python
3 try:
4 from polysh.main import main
5 except ImportError, e:
6 print e
7 print 'To run an uninstalled copy of polysh,'
8 print 'launch polysh.py in the top directory'
9 else:
10 main()