Skip to content
Snippets Groups Projects
Commit ed243d26 authored by Simon Michnowicz's avatar Simon Michnowicz
Browse files

Merge branch 'a16s' into 'master'

we attempt to generate a unique file name for every posible combinations of...

See merge request !596
parents 5776a741 f9530d82
Branches fixmailchimp
No related tags found
1 merge request!596we attempt to generate a unique file name for every posible combinations of...
......@@ -64,7 +64,7 @@ def write_xorg_conf(cards):
screens.append("Screen"+str(j))
for card in res:
filename = "/etc/X11/xorg.conf." + str(i) + str(res.index(card))
filename = "/etc/X11/xorg.conf." + str(i) + '_' + str(res.index(card))
template.stream({'boardname':boardname,'monitors':monitors,'screens':screens,'devices':card}).dump(filename)
if __name__ == "__main__":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment