Skip to content

Commit

Permalink
Fix for issue #625
Browse files Browse the repository at this point in the history
  • Loading branch information
jsmackie committed Nov 30, 2016
1 parent 3d46f5e commit 51fec05
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion corpustools/gui/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,10 @@ def showPreferences(self):

@check_for_empty_corpus
def showFeatureSystem(self):
oldSystem = self.corpusModel.corpus.specifier.name
try:
oldSystem = self.corpusModel.corpus.specifier.name
except AttributeError:
oldSystem = None
dialog = EditFeatureMatrixDialog(self, self.corpusModel.corpus, self.settings)
results = dialog.exec_()
if results:
Expand Down

0 comments on commit 51fec05

Please sign in to comment.