Skip to content

Commit

Permalink
fix travis failing to build due to until.py having invalid sequence
Browse files Browse the repository at this point in the history
Fixes following error
```
./qa/rpc-tests/util.py:149:24: W605 invalid escape sequence '\[' ./qa/rpc-tests/util.py:149:39: W605 invalid escape sequence '\]' ./qa/rpc-tests/util.py:173:86: W504 line break after binary operator ./qa/rpc-tests/util.py:174:54: W504 line break after binary operator ^---- failure generated from contrib/devtools/lint-python.sh
```

Resolves https://github.com/ioncoincore/ion/pull/104#pullrequestreview-200216078
ref https://github.com/ioncoincore/ion/pull/104
  • Loading branch information
cevap committed Feb 5, 2019
1 parent 5a47fa0 commit a9abe21
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions qa/rpc-tests/util.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Copyright (c) 2014-2018 The Bitcoin Core developers
# Copyright (c) 2014-2019 The Bitcoin Core developers
# Copyright (c) 2014-2015 The Dash developers
# Copyright (c) 2015-2018 The PIVX developers
# Copyright (c) 2018 The Ion developers
# Copyright (c) 2015-2017 The PIVX developers
# Distributed under the MIT/X11 software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
#
Expand Down Expand Up @@ -344,3 +343,4 @@ def assert_raises(exc, fun, *args, **kwds):
raise AssertionError("Unexpected exception raised: "+type(e).__name__)
else:
raise AssertionError("No exception raised")

0 comments on commit a9abe21

Please sign in to comment.