Skip to content

Commit

Permalink
Fix version string.
Browse files Browse the repository at this point in the history
Signed-off-by: Gowrishankar Muthukrishnan <gmuthukr@redhat.com>
  • Loading branch information
Gowrishankar Muthukrishnan committed Nov 16, 2019
1 parent 64dd451 commit ff40b95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netcontrold/app/ncd.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def run(self):
conn.sendall(status.encode())

elif cmd == 'CTLD_VERSION':
status = netcontrold.__version__
status = "netcontrold v%s\n" % netcontrold.__version__

conn.sendall(b"CTLD_DATA_ACK %6d" % (len(status)))
conn.sendall(status.encode())
Expand Down

0 comments on commit ff40b95

Please sign in to comment.