blob: 72a26ddea073f13a4da543753adc3cc55951d9cf [file] [log] [blame]
Martin v. Löwis6825e172008-12-01 04:44:45 +00001#!/usr/bin/env python
2
3# The above line should get replaced with the path to the Python
4# interpreter; the block below should get 2to3-converted.
5
6try:
7 from test2to3.hello import hello
8except ImportError, e:
9 print "Import failed", e
10hello()