Skip to content

Commit

Permalink
Fixes for errors after conflict resolution. Refs #6677
Browse files Browse the repository at this point in the history
  • Loading branch information
martyngigg committed Mar 15, 2013
1 parent 9f9c6cf commit e823559
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions Code/Mantid/Build/wiki_maker.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import os
import ConfigParser
import sys
import re
import wiki_tools
from wiki_tools import *
from wiki_report import WikiReporter
Expand Down
4 changes: 3 additions & 1 deletion Code/Mantid/Build/wiki_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,10 @@ def create_function_signature(alg, algo_name):
"""
create the function signature for the algorithm.
"""
from mantid.simpleapi import _get_function_spec
import mantid.simpleapi
from mantid.api IWorkspaceProperty
from mantid.simpleapi import _get_function_spec

_alg = getattr(mantid.simpleapi, algo_name)
prototype = algo_name + _get_function_spec(_alg)

Expand Down

0 comments on commit e823559

Please sign in to comment.