Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Jul 31, 2017
1 parent b262604 commit 3dc6daa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -223,7 +223,7 @@ def accept(self):
keepOpen = ProcessingConfig.getSetting(ProcessingConfig.KEEP_DIALOG_OPEN) keepOpen = ProcessingConfig.getSetting(ProcessingConfig.KEEP_DIALOG_OPEN)
parameters = self.getParamValues() parameters = self.getParamValues()
if parameters: if parameters:
with OverrideCusor(Qt.WaitCursor): with OverrideCursor(Qt.WaitCursor):
context = dataobjects.createContext() context = dataobjects.createContext()
ProcessingLog.addToLog(self.alg.asPythonCommand(parameters, context)) ProcessingLog.addToLog(self.alg.asPythonCommand(parameters, context))


Expand Down
1 change: 1 addition & 0 deletions python/utils.py
Expand Up @@ -650,6 +650,7 @@ def __exit__(self, exc_type, exc_val, exc_tb):
####################### #######################
# IMPORT wrapper # IMPORT wrapper



_uses_builtins = True _uses_builtins = True
try: try:
import builtins import builtins
Expand Down

0 comments on commit 3dc6daa

Please sign in to comment.