Bug 465718
| Summary: | invalid syntax error in BuildMaster.py | ||
|---|---|---|---|
| Product: | [Fedora] Fedora EPEL | Reporter: | Shad L. Lords <slords> |
| Component: | plague | Assignee: | Stephen John Smoogen <smooge> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | el5 | CC: | smooge |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2008-11-25 00:44:00 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
Just installed plague-0.4.5.7-1.el5 from the extras repo and this has been resolved. Thanks! |
Description of problem: Trying to start plague-server after install throws a syntax error Version-Release number of selected component (if applicable): plague-0.4.5.6-1.el5 How reproducible: Always Steps to Reproduce: 1. install plague + deps 2. start plague-server Actual results: File "/usr/share/plague/server/BuildMaster.py", line 30 class PeriodicJob(): # this is reused also by external patches ^ SyntaxError: invalid syntax Expected results: server starts Additional info: changing line to the following fixes the issue and allows the server to start: class PeriodicJob: # this is reused also by external patches