1
0
mirror of https://src.fedoraproject.org/rpms/virt-manager.git synced 2025-07-17 09:34:53 +00:00
Files
virt-manager/0001-Fix-rawhide-URL-installs.patch

25 lines
998 B
Diff

From 4d22adaf9306248350fca5f5542afa01d3cf992a Mon Sep 17 00:00:00 2001
From: Lars Seipel <lars.seipel@gmail.com>
Date: Mon, 29 Jul 2013 12:28:22 -0400
Subject: [PATCH] Fix rawhide URL installs
https://bugzilla.redhat.com/show_bug.cgi?id=989162
(cherry picked from commit 72648c9185e3ccb27fb9896a4e7a48f1769c8a4e)
---
virtinst/OSDistro.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/virtinst/OSDistro.py b/virtinst/OSDistro.py
index 5ecfdf6..780823c 100644
--- a/virtinst/OSDistro.py
+++ b/virtinst/OSDistro.py
@@ -512,7 +512,7 @@ class FedoraDistro(RedHatDistro):
if ret:
lateststr, latestnum = self._latestFedoraVariant()
ver = self.treeinfo.get("general", "version")
- if ver == "development":
+ if ver == "development" or ver == "rawhide":
self.os_variant = self._latestFedoraVariant()
elif ver:
vernum = int(str(ver).split("-")[0])