Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit 7a18b87

Browse files
committed
Fix error message
Just a minor fix where comma was used instead of a percent sign. Solves https://bugzilla.redhat.com/show_bug.cgi?id=915215
1 parent 032128d commit 7a18b87

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

virt-convert

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/python
22
#
3-
# Copyright 2008 Red Hat, Inc.
3+
# Copyright 2008, 2013 Red Hat, Inc.
44
# Joey Boggs <jboggs@redhat.com>
55
#
66
# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
@@ -213,8 +213,8 @@ def main():
213213
clean += [ options.output_dir ]
214214
except OSError, e:
215215
if (e.errno != errno.EEXIST):
216-
fail("Could not create directory %s: %s",
217-
(options.output_dir, e.strerror))
216+
fail("Could not create directory %s: %s" %
217+
(options.output_dir, e.strerror))
218218

219219
if not options.output_file:
220220
options.output_file = os.path.join(options.output_dir,

0 commit comments

Comments
 (0)