Codebase list python-livereload / b69531a
Imported Upstream version 2.2.2 Agustin Henze 9 years ago
4 changed file(s) with 13 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
11 =========
22
33 The full list of changes between each Python LiveReload release.
4
5 Version 2.2.2
6 -------------
7
8 Released on Sep 10, 2014
9
10 Fix for tornado 4.
11
412
513 Version 2.2.1
614 -------------
66 :copyright: (c) 2013 by Hsiaoming Yang
77 """
88
9 __version__ = '2.2.1'
9 __version__ = '2.2.2'
1010 __author__ = 'Hsiaoming Yang <me@lepture.com>'
1111 __homepage__ = 'https://github.com/lepture/python-livereload'
1212
2626 _last_reload_time = None
2727
2828 def allow_draft76(self):
29 return True
30
31 def check_origin(self, origin):
2932 return True
3033
3134 def on_close(self):
208208 logging.getLogger().setLevel(logging.INFO)
209209
210210 host = host or '127.0.0.1'
211 print('Serving on %s:%s' % (host, self.port))
211 print('Serving on http://%s:%s' % (host, self.port))
212212
213213 # Async open web browser after 5 sec timeout
214214 if open_url: