Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 671522
Collapse All | Expand All

(-)a/lddtree.py (-2 / +1 lines)
Lines 122-128 def makedirs(path): Link Here
122
  try:
122
  try:
123
    os.makedirs(path)
123
    os.makedirs(path)
124
  except OSError as e:
124
  except OSError as e:
125
    if e.errno != os.errno.EEXIST:
125
    if e.errno != errno.EEXIST:
126
      raise
126
      raise
127
127
128
128
129
- 

Return to bug 671522