aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2020-07-07 12:33:02 +0530
committerNavan Chauhan <navanchauhan@gmail.com>2020-07-07 12:33:02 +0530
commitbb730182584b09233ae955db41385864f087a4cb (patch)
tree3820818c7b786cad967fca807911fd7a72bf988e
parent98c857df48f04b482e4b443a3ae505c6b19506a7 (diff)
changed if cond is True to cond:
-rw-r--r--tests/dbTestFiller.py2
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