Skip to content
This repository has been archived by the owner on Aug 22, 2019. It is now read-only.

Commit

Permalink
Merge branch 'master' into rasa-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
wochinge committed Mar 6, 2019
2 parents 1fc2bdd + 02b8642 commit 8fc8cfa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2018 Rasa Technologies GmbH
Copyright 2019 Rasa Technologies GmbH

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -109,7 +109,7 @@ and apply your changes.

## License
Licensed under the Apache License, Version 2.0.
Copyright 2018 Rasa Technologies GmbH. [Copy of the license](LICENSE.txt).
Copyright 2019 Rasa Technologies GmbH. [Copy of the license](LICENSE.txt).

A list of the Licenses of the dependencies of the project can be found at
the bottom of the
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -76,7 +76,7 @@

# General information about the project.
project = u'Rasa Core'
copyright = u'2018, Rasa Technologies GmbH'
copyright = u'2019, Rasa Technologies GmbH'
author = u'Rasa Technologies GmbH'

# The version info for the project you're documenting, acts as replacement for
Expand Down
2 changes: 1 addition & 1 deletion rasa_core/utils.py
Expand Up @@ -26,7 +26,7 @@

def configure_file_logging(loglevel, logfile):
if logfile:
fh = logging.FileHandler(logfile)
fh = logging.FileHandler(logfile, encoding='utf-8')
fh.setLevel(loglevel)
logging.getLogger('').addHandler(fh)
logging.captureWarnings(True)
Expand Down

0 comments on commit 8fc8cfa

Please sign in to comment.