Add script forgotten in r67464.

This commit is contained in:
Martin v. Löwis 2008-12-01 04:44:45 +00:00
parent 6178db6d55
commit 6825e17e1e
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#!/usr/bin/env python
# The above line should get replaced with the path to the Python
# interpreter; the block below should get 2to3-converted.
try:
from test2to3.hello import hello
except ImportError, e:
print "Import failed", e
hello()