Skip to content

Commit

Permalink
Fix erroneous unused variable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bjeurissen authored and jdtournier committed Dec 6, 2022
1 parent dc673ef commit cf20916
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ if 'clean' in targets:
disp ('delete app: ' + appname + '\n')
try:
shutil.rmtree (appname)
except OSError as excp:
except OSError as excp: # pylint: disable=unused-variable
disp ('error deleting app "' + appname + '": ' + os.strerror (excp.errno))

sys.exit (0)
Expand Down

0 comments on commit cf20916

Please sign in to comment.