From 57aa5fbdc4d07c2d062ad40a55cb82a4007901e5 Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Tue, 28 Apr 2009 21:43:19 +0000 Subject: added exception to numpy import --- (limited to 'tajail.py') diff --git a/tajail.py b/tajail.py index af57e56..e2b1c85 100644 --- a/tajail.py +++ b/tajail.py @@ -22,7 +22,10 @@ import re from time import * from math import * -from numpy import * +try: + from numpy import * +except: + pass from taturtle import * def myfunc(lc, f, x): -- cgit v0.9.1