Skip to content

Commit

Permalink
Merge pull request #921 from janezd/fix-tab-parallel
Browse files Browse the repository at this point in the history
Scaling: fix identation
  • Loading branch information
lanzagar committed Dec 11, 2015
2 parents 99ed7a1 + e47da28 commit 4d20b20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Orange/widgets/utils/scaling.py
Original file line number Diff line number Diff line change
Expand Up @@ -539,9 +539,9 @@ def get_optimal_clusters(self, attribute_name_order, add_result_funct):
del data, graph, valuedict, closuredict, \
polygon_vertices_dict, enlarged_closure_dict, \
other_dict, classes_dict
except:
type, val, traceback = sys.exc_info()
sys.excepthook(type, val, traceback) # print the exception
except:
type, val, traceback = sys.exc_info()
sys.excepthook(type, val, traceback) # print the exception

secs = time.time() - start_time
self.clusterOptimization.setStatusBarText(
Expand Down

0 comments on commit 4d20b20

Please sign in to comment.