diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-07-07 12:30:28 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-07-07 12:30:28 +0530 |
commit | 2e0cdbd478e7e921f9e1f511ab55dd58a13e4c1d (patch) | |
tree | d9ea5165c7a2793be293089ee122c0c357715a0f /tests | |
parent | 59e56bb76ecdc11d610e56bd1c04de16d9295f8b (diff) |
changed != to is
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 fa720ad..a8982bd 100644 --- a/tests/dbTestFiller.py +++ b/tests/dbTestFiller.py @@ -4,7 +4,7 @@ debug = False host = "navanspi.duckdns.org" done = 1 -if debug != False: +if debug is True: host = "192.168.1.6" done = 0 |