@@ -11,8 +11,8 | |||
|
11 | 11 | self.output = "" |
|
12 | 12 | |
|
13 | 13 | def execute(self, beam="0"): |
|
14 |
|
|
|
15 | absObj = ABSClient(ipDestino="10.10.20.27") | |
|
14 | absObj = ABSClient(ipDestino="10.10.10.97") | |
|
15 | #absObj = ABSClient(ipDestino="10.10.20.27") | |
|
16 | 16 | self.output = absObj.changeBeam(beam) |
|
17 | 17 | |
|
18 | 18 | def getOutput(self): |
@@ -1,8 +1,11 | |||
|
1 | import file | |
|
2 | from client3 import * | |
|
3 | import sys | |
|
1 | import optparse, os, sys | |
|
4 | 2 | |
|
5 | absObj = ABSClient(ipDestino="10.10.10.99") | |
|
3 | pathFile = os.path.dirname(os.path.abspath(__file__)) | |
|
4 | sys.path.append(os.path.split(pathFile)[0]) | |
|
5 | ||
|
6 | from bin.client3 import ABSClient | |
|
7 | ||
|
8 | absObj = ABSClient(ipDestino="10.10.10.97") | |
|
6 | 9 | #absObj = ABSClient(ipDestino="10.10.20.27") |
|
7 | 10 | #absObj = ABSClient() |
|
8 | 11 | if len(sys.argv) == 2: |
General Comments 0
You need to be logged in to leave comments.
Login now