Skip to content

Commit 9f31803

Browse files
author
Jakub Ruzicka
committed
Update yum references to dnf
All the cool kids use dnf already ;) Change-Id: I36a56e4ffd230b7c93e792ca8fd8c7d138c43df7
1 parent fc82a19 commit 9f31803

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rdopkg/actions/util/actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def autocomplete():
3636
print(
3737
"You're missing the argcomplete python module. "
3838
"Install it using\n\n"
39-
" # yum install -y python-argcomplete\n\n"
39+
" # dnf install -y python-argcomplete\n\n"
4040
"or\n\n"
4141
" # pip install argcomplete\n\n"
4242
"and run `rdopkg autocomplete` again.")

rdopkg/exception.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class ModuleNotAvailable(RdopkgException):
5858

5959
class RpmModuleNotAvailable(ModuleNotAvailable):
6060
msg_fmt = ("Module rpm is not available. It is required to parse .spec "
61-
"files. Pro tip: `yum install rpm-python`")
61+
"files. Pro tip: `dnf install rpm-python`")
6262

6363

6464
class InvalidAction(RdopkgException):

0 commit comments

Comments
 (0)