We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72fabf0 commit 24a74bbCopy full SHA for 24a74bb
‎jaraco/fabric/mongodb.py
@@ -54,7 +54,7 @@ def distro_install_2(c, version):
54
55
# MongoDB 2
56
content = (
57
- 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart ' 'dist 10gen',
+ 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen',
58
)
59
org_list = '/etc/apt/sources.list.d/mongodb.list'
60
@@ -82,7 +82,7 @@ def distro_install_3(c, version):
82
83
for key in APT_KEYS:
84
c.sudo(
85
- 'apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 ' f'--recv {key}',
+ f'apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv {key}',
86
warn=True,
87
88
0 commit comments