Files
ports/archived/fbpanel/fbpanel-7.0-python3.10.patch
2023-08-25 11:31:31 +00:00

10 lines
410 B
Diff

python3.10 does not allow concatenating a string with None and
this shouldn't be ran either way if None.
--- a/configure
+++ b/configure
@@ -75,3 +75,3 @@
self).add_argument_group(title, description)
- if name != 'help' and len(name.split()) == 1:
+ if name != 'help' and len(name.split()) == 1 and title is not None:
self.add_argument("--help-" + name, group = 'help',