No need to specify all copyright years, they are implied by specifying the first one
[gsh.git] / bin / gsh
blob36b4fd3aab372c9e3d92291cc07af4934342c9c3
1 #!/usr/bin/env python
3 try:
4 from gsh.main import main
5 except ImportError, e:
6 print e
7 print 'To run an uninstalled copy of gsh,'
8 print 'launch gsh.py in the top directory'
9 else:
10 main()