Skip to content

Commit

Permalink
Fix small bug passing -b to dmenu
Browse files Browse the repository at this point in the history
  • Loading branch information
firecat53 committed Jun 15, 2017
1 parent c0afc3e commit 5b79225
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions networkmanager_dmenu
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ def dmenu_cmd(num_lines, prompt="Networks", active_lines=None): # pylint: disab
res.extend(dmenu_args)
res += list(itertools.chain.from_iterable(extras))
res[1:1] = lines.split()
res = list(filter(None, res)) # Remove empty list elements
res.extend(sys.argv[1:])
return res

Expand Down

0 comments on commit 5b79225

Please sign in to comment.