Skip to content

Commit

Permalink
Add missing interpolation value (issue #8)
Browse files Browse the repository at this point in the history
  • Loading branch information
hartwork committed Jun 30, 2015
1 parent 98ee493 commit ff660ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grub2_theme_preview/which.py
Expand Up @@ -16,7 +16,7 @@ def which(command):
continue

if not os.access(candidate, os.X_OK):
raise OSError(errno.EPERM, 'File "%s" not executable')
raise OSError(errno.EPERM, 'File "%s" not executable' % candidate)

return candidate

Expand Down

0 comments on commit ff660ae

Please sign in to comment.