/usr/bin/gwibber-accounts has bogus #! line
Bug #988385 reported by
Barry Warsaw
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Gwibber |
Fix Released
|
Low
|
Unassigned | ||
gwibber (Ubuntu) |
Fix Committed
|
Low
|
Unassigned | ||
Precise |
Fix Released
|
Low
|
Unassigned |
Bug Description
% head -n 1 /usr/bin/
#!/usr/bin/env python
This is destined to break. It is never a good idea for production code to use /usr/bin/env. Instead, it should use #!/usr/bin/python just like gwibber-service does.
Changed in gwibber: | |
assignee: | nobody → Ken VanDine (ken-vandine) |
importance: | Undecided → Low |
milestone: | none → 3.4.1 |
status: | New → Confirmed |
Changed in gwibber (Ubuntu): | |
status: | New → Triaged |
importance: | Undecided → Low |
Changed in gwibber: | |
status: | Confirmed → Fix Committed |
Changed in gwibber: | |
status: | Fix Committed → Fix Released |
assignee: | Ken VanDine (ken-vandine) → nobody |
To post a comment you must log in.
Note that it's okay for the *development* branch to use /usr/bin/env, in fact, it's preferable so that it's easier to develop against alternative Python's. Once deployed though, it must use /usr/bin/python.