diff options
author | Guillaume Seguin <ixce@ed3n-m.(none)> | 2009-10-23 01:12:25 +0200 |
---|---|---|
committer | Guillaume Seguin <ixce@ed3n-m.(none)> | 2009-10-23 01:12:25 +0200 |
commit | cd9c1d8ed140e56b60d50655da19716172185ea8 (patch) | |
tree | 8025c8764be953dd581ca774a6551c1c9faeabd6 | |
parent | b8836feed275ceff63c325bf1e49fba3c71cf512 (diff) | |
download | umlpy-cd9c1d8ed140e56b60d50655da19716172185ea8.tar.gz umlpy-cd9c1d8ed140e56b60d50655da19716172185ea8.tar.bz2 |
Fix multiline @uses with spaces
-rw-r--r-- | grapher.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -133,7 +133,7 @@ for doc in docs: if str (var_val.docstring) != "<UNKNOWN>": bits = str (var_val.docstring).split ("\n") for bit in bits: - if bit.startswith ("@uses:"): + if bit.strip ().startswith ("@uses:"): bit = bit.replace ("@uses:", "").strip () uses_dict[var_name].append (bit) for var_var in var_vars: |