Changeset 72c86153ff7cc0b2f140ae342ae3ba62d916f3fd for 0.10
- Timestamp:
- 01/22/08 20:09:10 (5 years ago)
- git-parent:
- Files:
-
- 0.10/gitplugin/PyGIT.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
0.10/gitplugin/PyGIT.py
r3d49df0 r72c8615 26 26 27 27 try: 28 os.m kdir(self.cache_dir, 0755)28 os.makedirs (self.cache_dir, 0755) 29 29 except: 30 30 pass 31 31 32 32 try: 33 os.m kdir(self.cache_dir + '/short', 0755)33 os.makedirs (self.cache_dir + '/short', 0755) 34 34 except: 35 35 pass 36 36 37 37 try: 38 os.m kdir(self.cache_dir + '/long', 0755)38 os.makedirs (self.cache_dir + '/long', 0755) 39 39 except: 40 40 pass … … 57 57 58 58 try: 59 os.m kdir(self.cache_dir + '/short', 0755)59 os.makedirs (self.cache_dir + '/short', 0755) 60 60 except: 61 61 pass