Skip to content

Commit

Permalink
add missing substitution for errno string
Browse files Browse the repository at this point in the history
  • Loading branch information
radhermit committed Mar 29, 2015
1 parent 13dcb12 commit d692acc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vimball/__init__.py
Expand Up @@ -128,7 +128,7 @@ def extract(self, extractdir=None, verbose=False):
directory = os.path.dirname(filepath)
mkdir_p(directory)
except OSError as e:
raise ArchiveError('Failed creating directory "{}": '.format(
raise ArchiveError('Failed creating directory "{}": {}'.format(
directory, os.strerror(e.errno)))
with open(filepath, 'w') as f:
if verbose:
Expand Down

0 comments on commit d692acc

Please sign in to comment.