mirror of
https://pagure.io/fm-orchestrator.git
synced 2026-04-05 11:48:33 +08:00
Merge #649 Yet another fix for #24
This commit is contained in:
@@ -438,14 +438,12 @@ class Config(object):
|
||||
|
||||
def _setifok_rpms_default_repository(self, s):
|
||||
rpm_repo = str(s)
|
||||
if rpm_repo[-1] != '/':
|
||||
rpm_repo = rpm_repo + '/'
|
||||
rpm_repo = rpm_repo.rstrip('/') + '/'
|
||||
self._rpms_default_repository = rpm_repo
|
||||
|
||||
def _setifok_rpms_default_cache(self, s):
|
||||
rpm_cache = str(s)
|
||||
if rpm_cache[-1] != '/':
|
||||
rpm_cache = rpm_cache + '/'
|
||||
rpm_cache = rpm_cache.rstrip('/') + '/'
|
||||
self._rpms_default_cache = rpm_cache
|
||||
|
||||
def _setifok_log_backend(self, s):
|
||||
|
||||
Reference in New Issue
Block a user