diff options
| author | Thomas Kluyver <takowl@gmail.com> | 2013-04-18 13:23:23 -0700 |
|---|---|---|
| committer | Thomas Kluyver <takowl@gmail.com> | 2013-04-18 13:23:23 -0700 |
| commit | 32db2f567c844ece509a5001233606465474d18f (patch) | |
| tree | 71b0f86bb78aa06536090d54dc8125761781ff67 /weatbag/tiles/centre.py | |
| parent | 26abad862afefb0e6c598719545572e187fa9033 (diff) | |
| parent | a0d1dc13e0923b12e8a9f21fcfa71165b333eb71 (diff) | |
Merge pull request #17 from lathan/master
Fixed bug in e2.py, Wrapped all lines in tiles longer than 79 characters to conform to PEP 8
Diffstat (limited to 'weatbag/tiles/centre.py')
| -rw-r--r-- | weatbag/tiles/centre.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/weatbag/tiles/centre.py b/weatbag/tiles/centre.py index c2709d7..2dc33ca 100644 --- a/weatbag/tiles/centre.py +++ b/weatbag/tiles/centre.py @@ -5,9 +5,10 @@ class Tile: self.contents = {'rope': 1} def describe(self): - print("You are in a sizeable clearing in the forest. Paths lead off in " - "four directions, which your unerring sense of direction tells you " - "correspond to the four compass points.") + print("You are in a sizeable clearing in the forest. " + "Paths lead off in four directions, " + "which your unerring sense of direction tells you " + "correspond to the four compass points.") if self.contents.get('rope'): print("A short length of rope is lying on the floor.") |
