Merge "Remove shebang as the script is managed by an entry_point"

This commit is contained in:
Jenkins 2016-06-02 06:55:34 +00:00 committed by Gerrit Code Review
commit 9e98e23c86
1 changed files with 0 additions and 6 deletions

View File

@ -1,4 +1,3 @@
#!/usr/bin/env python
# Copyright 2013 OpenStack Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
@ -127,8 +126,3 @@ def main():
pid = pid_file_module.TimeoutPIDLockFile(server.args.pidfile, 10)
with daemon.DaemonContext(pidfile=pid):
server.main()
if __name__ == "__main__":
sys.path.insert(0, '.')
main()