Skip to content

Commit 2f21b1e

Browse files
committed
Fixing the list formatting
1 parent ab611ff commit 2f21b1e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ Follows the [java properties file format](http://docs.oracle.com/javase/6/docs/a
99
`dict getJavaProperties(file)`
1010

1111
- Args:
12-
- file: a valid file object (as returned by `open(filename)`)
12+
- file: a valid file object (as returned by `open(filename)`)
1313
- Returns:
14-
- The property key and elements as a dict
14+
- The property key and elements as a dict
1515
- Raises:
16-
- `IOError`: if file operation fails with I/O related reason
17-
- Corresponds to java `IOException` in `Properties.load()`
18-
- `UnicodeDecodeError`: if the property file has malformed `\uxxxx` encoding,
19-
- Corresponds to java `IllegalArgumentException` in `Properties.load()`
20-
- `AttributeError`: if invalid object was provided for file object
21-
- Corresponds to java `NullPointerException`
16+
- `IOError`: if file operation fails with I/O related reason
17+
- Corresponds to java `IOException` in `Properties.load()`
18+
- `UnicodeDecodeError`: if the property file has malformed `\uxxxx` encoding,
19+
- Corresponds to java `IllegalArgumentException` in `Properties.load()`
20+
- `AttributeError`: if invalid object was provided for file object
21+
- Corresponds to java `NullPointerException`
2222

2323
## Example
2424

0 commit comments

Comments
 (0)