Changeset 271:061c3de402c2 for imapclient
- Timestamp:
- 08/11/11 21:11:17 (7 months ago)
- Branch:
- default
- Files:
-
- 1 moved
-
imapclient/interact.py (moved) (moved from interact.py) (3 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
imapclient/interact.py
- Property exe deleted
r270 r271 9 9 from optparse import OptionParser 10 10 11 from imapclient.config import parse_config_file, create_client_from_config11 from config import parse_config_file, create_client_from_config 12 12 13 13 def command_line(): … … 45 45 return opts 46 46 47 48 if __name__ == '__main__': 47 def main(): 49 48 opts = command_line() 50 49 print 'Connecting...' … … 72 71 except ImportError: 73 72 pass 73 74 if __name__ == '__main__': 75 main()
