File tree 1 file changed +4
-3
lines changed
azure/functions/decorators 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ def decorator():
293
293
# it with the result of the DF decorator
294
294
self ._function_builders .pop ()
295
295
self ._function_builders .append (function_builder )
296
- return fb2
296
+ return function_builder
297
297
return decorator ()
298
298
return wrap
299
299
@@ -308,8 +308,9 @@ def _get_durable_blueprint(self):
308
308
return df_bp
309
309
except ImportError :
310
310
error_message = "Attempted to use a Durable Functions decorator, " \
311
- "but the `azure-functions-durable` SDK package could not be found. " \
312
- "Please install `azure-functions-durable` to use Durable Functions."
311
+ "but the `azure-functions-durable` SDK package could not be " \
312
+ "found. Please install `azure-functions-durable` to use " \
313
+ "Durable Functions."
313
314
raise Exception (error_message )
314
315
315
316
@property
You can’t perform that action at this time.
0 commit comments