File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 23
23
24
24
# Once that's done, send a NotifyProjectCreate packet.
25
25
# If nothing needs to be changed from the RequestProjectCreate packet,
26
- # you can use the packet's reply_to () method. This will create a packet that
26
+ # you can use the packet's reply_packet () method. This will create a packet that
27
27
# automatically has the proper type and a reference to the preceeding packet.
28
28
# The AMIE service will extrapolate the needed information from the
29
29
# RequestProjectCreate packet.
30
30
31
- project_created = project_creation_request .reply_to ()
31
+ project_created = project_creation_request .reply_packet ()
32
32
33
33
psc_client .send_packet (project_created )
34
34
38
38
transaction = client_too .get_transaction (transaction_id = '12345' )
39
39
project_creation_request = transaction .packets [- 1 ]
40
40
# Do something...
41
- project_created = project_creation_request .reply_to ()
41
+ project_created = project_creation_request .reply_packet ()
42
42
client_too .send_packet (project_created )
You can’t perform that action at this time.
0 commit comments