Skip to content

Commit

Permalink
Update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
KnugiHK committed May 25, 2020
1 parent 19b6b45 commit 2b853b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rtmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -1967,7 +1967,7 @@ def onConnect_handler(client, *args):
# The main routine to start, run and stop the service
if __name__ == '__main__':
from optparse import OptionParser
parser = OptionParser(version='SVN $Revision$, $Date$'.replace('$', ''))
parser = OptionParser(version='v0.1.7, 25/05/2020')
parser.add_option(
'-i',
'--host',
Expand Down Expand Up @@ -2022,9 +2022,9 @@ def onConnect_handler(client, *args):
agent = FlashServer()
agent.root = options.root
agent.start(options.host, options.port)
print(time.asctime(), 'Flash Server Starts - %s:%d' % (options.host, options.port))
print(time.asctime(), 'RTMPLite Server Starts - %s:%d (v0.1.7)' % (options.host, options.port))
multitask.run()
except KeyboardInterrupt:
pass

print(time.asctime(), 'Flash Server Stops')
print(time.asctime(), 'RTMPLite Server Stops')

0 comments on commit 2b853b6

Please sign in to comment.