summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Holland <william.holland@codethink.co.uk>2015-09-16 22:19:09 +0100
committerWill Holland <william.holland@codethink.co.uk>2015-09-16 22:19:09 +0100
commitbb4ea186341487790b3a4d77d1e814cb500e8818 (patch)
treef646146a41bad592a2a51de231ef78df04e6378a
parentafb85a5f1ba25c16f3235667da17beed7fae32e5 (diff)
downloadorchestration-bb4ea186341487790b3a4d77d1e814cb500e8818.tar.gz
Rename port variable to avoid confusion
-rw-r--r--source/bottlerock.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/bottlerock.py b/source/bottlerock.py
index 0edc6f8..6bd4a53 100644
--- a/source/bottlerock.py
+++ b/source/bottlerock.py
@@ -35,13 +35,13 @@ def sendchange(category,properties):
assert category in categories
import subprocess
IP="127.0.0.1"
- port=9999
+ bb_port=9999
user='orchestration'
password='orchestration'
cmd = [
'../orchenv-master/bin/buildbot',
'sendchange',
- '-m%s:%d' % (IP,port),
+ '-m%s:%d' % (IP,bb_port),
'-a%s:%s' % (user,passwd),
'-Wscriptbot',
'-C%s' % category]