diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-07-07 12:33:02 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-07-07 12:33:02 +0530 |
commit | bb730182584b09233ae955db41385864f087a4cb (patch) | |
tree | 3820818c7b786cad967fca807911fd7a72bf988e /tests | |
parent | 98c857df48f04b482e4b443a3ae505c6b19506a7 (diff) |
changed if cond is True to cond:
Diffstat (limited to 'tests')
-rw-r--r-- | tests/dbTestFiller.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dbTestFiller.py b/tests/dbTestFiller.py index a8982bd..b3f0b49 100644 --- a/tests/dbTestFiller.py +++ b/tests/dbTestFiller.py @@ -4,7 +4,7 @@ debug = False host = "navanspi.duckdns.org" done = 1 -if debug is True: +if debug: host = "192.168.1.6" done = 0 |