Skip to content

Failing readthedocs #163

@arnfinn

Description

@arnfinn

Failed with this commit: 809e4a9

Reason:
Line 83 in doc/conf.py throws an error since prere is NoneType.

Error:

  File "conf.py", line 83, in <module>
    tweak = '+'.join([prere, sha])
TypeError: sequence item 0: expected str instance, NoneType found

Dirty fix:

-tweak = '+'.join([prere, sha])
+try:
+    tweak = '+'.join([prere, sha])
+except:
+    tweak = sha

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions