Skip to content

Commit

Permalink
version 0.1 - actually working, no interface\docs
Browse files Browse the repository at this point in the history
  • Loading branch information
azanegin committed Jun 15, 2015
1 parent 3235d81 commit ca7a218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devops.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 77,7 @@ def __init__(self, portnum, _whitelist):
self.whitelist = None
if _whitelist is not None:
with open(_whitelist, 'r') as wlfile:
self.whitelist = [line for line in wlfile]
self.whitelist = [line.rstrip('\n') for line in wlfile]
self.multicast_address = ("224.0.1.224", portnum)
return

Expand Down

0 comments on commit ca7a218

Please sign in to comment.