Permalink
Browse files

fixed a bug

  • Loading branch information...
1 parent 0d81d94 commit 97ae36bbfaea23e2520b508057ac8e9d325de4ca @bahniks committed Jun 3, 2014
Showing with 2 additions and 2 deletions.
  1. +1 −1 Stuff/Modules/cm.py
  2. +1 −1 Stuff/Modules/version.py
View
@@ -201,7 +201,7 @@ def _processRoomFile(self, infile, endsplit = 7):
* missCounter + before[1]
missing = []
- if missing != []:
+ if missing != [] and before:
for missLines in missing:
self.data[missLines][2:4] = before
View
@@ -21,7 +21,7 @@ def version():
return ['0', '4', '0']
def date():
- return "26 May 2014"
+ return "3 June 2014"
def copyleft():
return "2013, 2014"

0 comments on commit 97ae36b

Please sign in to comment.