mirror of
https://src.fedoraproject.org/rpms/virt-manager.git
synced 2025-07-16 01:03:36 +00:00
25 lines
998 B
Diff
25 lines
998 B
Diff
From ca87c73cb4148e17192085c0f920a3d158219727 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])
|