[Trivial Fix] change the unicode of some higher numbered characters

Change-Id: Ib83fdbe69140ce16c34ced10b3472b0120a9870e
This commit is contained in:
lvxianguo 2018-09-06 16:51:59 +08:00
parent 1731018f06
commit 902c6d1558
3 changed files with 4 additions and 4 deletions

View File

@ -120,7 +120,7 @@ License
Copyright (c) 2014 Hewlett-Packard Development Company, L.P.
Licensed under the Apache License, Version 2.0 (the “License”); you may
Licensed under the Apache License, Version 2.0 (the "License"); you may
not use this file except in compliance with the License. You may obtain
a copy of the License at
@ -129,7 +129,7 @@ a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an “AS IS” BASIS,
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View File

@ -48,7 +48,7 @@ abstract class BaseSqlRepo {
try {
tx.rollback();
} catch (RuntimeException rbe) {
LOG.error(ORM_LOG_MARKER, "Couldnt roll back transaction", rbe);
LOG.error(ORM_LOG_MARKER, "Couldn't roll back transaction", rbe);
}
}
}

View File

@ -151,7 +151,7 @@ commands = bindep test
# H302 import only modules
# H405 multi line docstring summary not separated with an empty line
ignore = F821,H201,H302,H405
# H106: Dont put vim configuration in source files
# H106: Don't put vim configuration in source files
# H203: Use assertIs(Not)None to check for None
# H204: Use assert(Not)Equal to check for equality.
# H205: Use assert(Greater|Less)(Equal) for comparison.