Skip to content

Commit

Permalink
Fix format.
Browse files Browse the repository at this point in the history
  • Loading branch information
allenh1 committed Jan 26, 2018
1 parent db458ab commit 79f00ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions superflore/generators/ebuild/ebuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def get_ebuild_text(self, distributor, license_text):
ret += " " + "ros-" + self.distro + "/" + rdep + "\n"
# internal test dependencies
for tdep in sorted(self.tdepends):
ret += " " + "test? ros-" + self.distro + "/" + tdep + "\n"
ret += " " + "test? ( ros-" + self.distro + "/" + tdep + " )\n"
for rdep in sorted(self.rdepends_external):
try:
for res in resolve_dep(rdep, 'gentoo')[0]:
Expand All @@ -169,7 +169,7 @@ def get_ebuild_text(self, distributor, license_text):
for tdep in sorted(self.tdepends_external):
try:
for res in resolve_dep(tdep, 'gentoo')[0]:
ret += " test? " + res + "\n"
ret += " test? ( " + res + " )\n"
except UnresolvedDependency:
self.unresolved_deps.append(tdep)
ret += "\"\n"
Expand Down

0 comments on commit 79f00ab

Please sign in to comment.