Changeset 63
- Timestamp:
- 09/25/07 21:15:54 (1 year ago)
- Files:
-
- photobooth/photobooth.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
photobooth/photobooth.py
r62 r63 2 2 from twisted.internet import reactor, defer 3 3 import simplejson 4 from datetime import datetime 4 5 5 6 import fizzjik.input.easyident … … 121 122 122 123 def uploadPhoto(self, path, title=None, tags=None): 124 if not title: 125 title = datetime.now().strftime("%A, %H:%m") 123 126 d = self.flickr.upload(path, title=title, tags=tags) 124 127 d.addCallback(pprint.pprint)
