Skip to content

Commit 7823052

Browse files
committed
Tweaks from PR
1 parent 36d7ef8 commit 7823052

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

magicbus/plugins/signalhandler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
long_desc = ("The Process Bus is a publish/subscribe architecture that"
2323
" loosely connects components with services.")
2424
classifiers = [
25-
"Development Status :: 5 - Alpha",
25+
"Development Status :: 3 - Alpha",
2626
"Environment :: Web Environment",
2727
"Intended Audience :: Developers",
2828
"License :: Freely Distributable",
@@ -68,7 +68,7 @@
6868
def 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

0 commit comments

Comments
 (0)