Browse Source

Adjust line breaks

Add a few line breaks to keep line lengths below 80 chars.
pull/8/head
George Vlahavas 9 years ago
parent
commit
8f730f5a43
  1. 6
      src/xdgmenumaker

6
src/xdgmenumaker

@ -674,11 +674,13 @@ def compizboxmenu():
print(('{s} <item type="launcher"><name>{n}</name>'
'<icon>{i}</icon>'
'<command>{c}</command></item>').format(s=spacing,
n=name, i=icon, c=command))
n=name, i=icon,
c=command))
else:
print(('{s} <item type="launcher"><name>{n}</name>'
'<command>{c}</command></item>').format(s=spacing,
n=name, c=command))
n=name,
c=command))
print('{}</menu>'.format(spacing))
if submenu:
print('</menu>')

Loading…
Cancel
Save