Skip to content

Commit cd1ccc2

Browse files
committed
Documented change in representation of octal numbers in the config
file under python3. Moved from leading 0 to leading 0o.
1 parent 5217431 commit cd1ccc2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

doc/upgrading.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,13 @@ you do not need to export and import, but need to delete the
6666
If using the ``postgresql`` backend, you do not need to export and
6767
import and no other special database-related steps are needed.
6868

69+
Octal values in config.ini change from the python 2 representation
70+
with a leading ``0`` (``022``). They now use a leading ``0o``
71+
(``0o22``). Note that the ``0o`` format is properly handled under
72+
python 2. You can use the ``newfile.ini`` generated using
73+
``python3 roundup-admin ... updateconfig newfile.ini``
74+
if you want to go back to using python 2.
75+
6976
Migrating from 1.5.1 to 1.6.0
7077
=============================
7178

0 commit comments

Comments
 (0)