summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--devel/management/commands/reporead.py2
-rw-r--r--main/fixtures/arches.json6
2 files changed, 4 insertions, 4 deletions
diff --git a/devel/management/commands/reporead.py b/devel/management/commands/reporead.py
index 778db370..548245c8 100644
--- a/devel/management/commands/reporead.py
+++ b/devel/management/commands/reporead.py
@@ -579,7 +579,7 @@ def read_repo(primary_arch, repo_file, options):
for package in packages:
if package.arch == 'any':
- setattr(package, 'arch', 'any (%s)' % primary_arch.name)
+ setattr(package, 'arch', 'any_%s' % primary_arch.name)
if package.arch in packages_arches:
packages_arches[package.arch].append(package)
else:
diff --git a/main/fixtures/arches.json b/main/fixtures/arches.json
index 3747769c..767f16e3 100644
--- a/main/fixtures/arches.json
+++ b/main/fixtures/arches.json
@@ -40,7 +40,7 @@
"model": "main.arch",
"fields": {
"agnostic": true,
- "name": "any (i686)",
+ "name": "any_i686",
"required_signoffs": 1
}
},
@@ -49,7 +49,7 @@
"model": "main.arch",
"fields": {
"agnostic": true,
- "name": "any (x86_64)",
+ "name": "any_x86_64",
"required_signoffs": 1
}
},
@@ -58,7 +58,7 @@
"model": "main.arch",
"fields": {
"agnostic": true,
- "name": "any (armv7h)",
+ "name": "any_armv7h",
"required_signoffs": 1
}
}