Displaying 1 result from an estimated 1 matches for "33f69dcfa".
Did you mean:
33f69dc
2017 Apr 04
1
[PATCH] Use Unicode single quotes ‘’ in place of short single quoted strings throughout.
...if files = [] then (
- warning (f_"package '%s' contains no files") name;
+ warning (f_"package ‘%s’ contains no files") name;
None
)
else (
diff --git a/v2v/output_libvirt.ml b/v2v/output_libvirt.ml
index 33f69dcfa..b3e695387 100644
--- a/v2v/output_libvirt.ml
+++ b/v2v/output_libvirt.ml
@@ -95,10 +95,10 @@ class output_libvirt oc output_pool = object
(* Does the domain already exist on the target? (RHBZ#889082) *)
if Libvirt_utils.domain_exists ?conn:oc source.s_name then (
if source.s_hype...