()
| 452 | print ' ' |
| 453 | |
| 454 | def createChan(): |
| 455 | global usrPrompt |
| 456 | password = userInput("Enter channel name") |
| 457 | password = password.encode('base64') |
| 458 | try: |
| 459 | print api.createChan(password) |
| 460 | except: |
| 461 | print '\n Connection Error\n' |
| 462 | usrPrompt = 0 |
| 463 | main() |
| 464 | |
| 465 | |
| 466 | def joinChan(): |