Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Apply `pyupgrade --py3-plus` to remove Python 2 compatibility code. | Ben Sturmfels | 2021-03-05 | 1 | -2/+1 |
| | |||||
* | Support Unicode characters in configuration values | Simen Heggestøyl | 2017-10-16 | 1 | -1/+3 |
| | | | | | | | Prior to this commit, using a Unicode character in a configuration string would result in a `UnicodeDecodeError` being raised. Supporting Unicode characters is especially useful in user-facing configuration strings, such as `html_title`. | ||||
* | Reverting "Always activate testing in every test module ever." | Christopher Allan Webber | 2013-05-17 | 1 | -3/+0 |
| | | | | | | Revert "Always activate testing in every test module ever." This reverts commit 0536306048daa0970d2e43411ba2a9bf073e570e. | ||||
* | Always activate testing in every test module ever. | Christopher Allan Webber | 2013-05-16 | 1 | -0/+3 |
| | | | | Kind of a dorky way to implement this, but... | ||||
* | Better Py3 compat: d.has_key(k) -> k in d | Elrond | 2013-01-30 | 1 | -1/+1 |
| | | | | | | | | py3 does not have dict.has_key any more. You have to use "key in dict" instead. As that works in python2 as well, let's use that. Also some small bits of pep8. | ||||
* | Fix tests given recent celery "case" change | Christopher Allan Webber | 2012-02-28 | 1 | -4/+4 |
| | |||||
* | It's 2012 all up in here | Christopher Allan Webber | 2012-02-02 | 1 | -1/+1 |
| | |||||
* | 508. Updates copyright/license information | Will Kahn-Greene | 2011-09-01 | 1 | -1/+1 |
| | |||||
* | Move config.py to init/ | Elrond | 2011-07-02 | 1 | -1/+1 |
| | | | | | | | Some simple changes needed to do that. The interesting question left: Should config_spec.ini also be moved? | ||||
* | Tests for mediagoblin.config functions | Christopher Allan Webber | 2011-06-18 | 1 | -0/+97 |
Tests for: - read_mediagoblin_config() - generate_validation_report() |