1
0
Fork 0
satnogs-network/network/base
Fabian P. Schmidt ec73abeaa7 migrations: Replace bytes with string literals
As long as the bytes literal contains only ASCII data it can be replaced
with a string literal already in Python 2.
https://docs.djangoproject.com/en/1.11/topics/python3/#unicode-literals

The following command was used to generate this patch:
```
sed -i "s/b'\([\x00-\x7F]*\)'/'\1'/g" network/base/migrations/*
```

Similar commit in db: librespacefoundation/satnogs/satnogs-db@f0c0c9bc

Signed-off-by: Fabian P. Schmidt <kerel@mailbox.org>
2020-01-08 18:16:15 +01:00
..
fixtures Added frequency_max to fixtures so initialize will work 2017-03-20 19:42:32 +11:00
management management/commands/fetch_data: Locally disable redefined-builtin pylint error (W0622) 2020-01-08 15:17:33 +00:00
migrations migrations: Replace bytes with string literals 2020-01-08 18:16:15 +01:00
templatetags utils/drifted_frq: Use python3 round builtin (W1633) 2020-01-04 15:31:05 +01:00
__init__.py Refactor project 2014-12-19 15:06:58 +02:00
admin.py admin/AntennaAdmin: Replace __unicode__ by __str__ in list_display 2020-01-08 15:05:34 +00:00
context_processors.py Add absolute_import to all relevant files (W1618) 2019-12-31 08:51:04 +00:00
db_api.py Remove unncessary pass statements in empty classes with docstring (W0107) 2020-01-08 15:26:42 +00:00
decorators.py Add absolute_import to all relevant files (W1618) 2019-12-31 08:51:04 +00:00
forms.py forms/BaseObservationFormSet: Add missing initialization of member variable (W0201) 2020-01-08 18:00:51 +01:00
managers.py Add absolute_import to all relevant files (W1618) 2019-12-31 08:51:04 +00:00
models.py models/Observation: Improve requests exception handling (W0703) 2020-01-08 18:01:49 +01:00
perms.py Remove unncessary pass statements in empty classes with docstring (W0107) 2020-01-08 15:26:42 +00:00
scheduling.py Add comments for missing atttributes in ephem.Observer class slots (E0237) 2020-01-08 18:04:26 +01:00
stats.py Add from __future__ import division to all relevant files (W1619) 2020-01-04 13:55:12 +00:00
tasks.py tasks/clean_observations: Fix premature task termination in 'stage' environment 2020-01-04 19:46:06 +01:00
test_utils.py test_utils: Add missing docstrings (C0111) 2020-01-08 17:58:30 +01:00
tests.py Add absolute_import to all relevant files (W1618) 2019-12-31 08:51:04 +00:00
urls.py Add absolute_import to all relevant files (W1618) 2019-12-31 08:51:04 +00:00
utils.py utils/export_as_csv: Catch more-specific TypeError instead of broad Exception (W0703) 2020-01-08 18:02:23 +01:00
validators.py Remove unncessary pass statements in empty classes with docstring (W0107) 2020-01-08 15:26:42 +00:00
views.py Add comments for missing atttributes in ephem.Observer class slots (E0237) 2020-01-08 18:04:26 +01:00