File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class SignalHandler(object):
1616
1717 handlers = {'SIGTERM': self.bus.transition("EXITED"),
1818 'SIGHUP': self.handle_SIGHUP,
19- 'SIGUSR1': self.bus.transition("IDLE" -> "RUN"),
19+ 'SIGUSR1': self.bus.transition("IDLE"); self.bus.transition( "RUN"),
2020 }
2121
2222 The :func:`SignalHandler.handle_SIGHUP`` method calls execv if the process
Original file line number Diff line number Diff line change 2222long_desc = ("The Process Bus is a publish/subscribe architecture that"
2323 " loosely connects components with services." )
2424classifiers = [
25- "Development Status :: 5 - Alpha" ,
25+ "Development Status :: 3 - Alpha" ,
2626 "Environment :: Web Environment" ,
2727 "Intended Audience :: Developers" ,
2828 "License :: Freely Distributable" ,
6868def main ():
6969 if sys .version < required_python_version :
7070 s = "I'm sorry, but %s %s requires Python %s or later."
71- print (s % (name , version , required_python_version ))
71+ print (s % (name , sys . version , required_python_version ))
7272 sys .exit (1 )
7373 # set default location for "data_files" to
7474 # platform specific "site-packages" location
You can’t perform that action at this time.
0 commit comments