Skip to content

Commit

Permalink
Re #4303 put import in the right place
Browse files Browse the repository at this point in the history
  • Loading branch information
mdoucet committed Jan 26, 2012
1 parent b34cdef commit 23b2f7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/scripts/Interface/reduction_application.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import sys, os
import traceback
from PyQt4 import QtGui, QtCore, uic
from mantidsimple import *

# Check whether Mantid is available
try:
from MantidFramework import *
mtd.initialise(False)
from mantidsimple import *
HAS_MANTID = True
except:
HAS_MANTID = False
Expand Down

0 comments on commit 23b2f7a

Please sign in to comment.