Skip to content

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
Signed-off-by: Armin Wieser <armin.wieser@gmail.com>
  • Loading branch information
awieser committed Mar 10, 2012
1 parent a658045 commit 5c27510
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions memacs/ical.py
Expand Up @@ -142,8 +142,8 @@ def __handle_vevent(self, component):
logging.debug(orgdate + " " + summary)

# we need to set data_for_hashing=summary to really get a other sha1
data_for_hashing=orgdate + summary
data_for_hashing = orgdate + summary

org_properties = OrgProperties(data_for_hashing=data_for_hashing)

if location != None:
Expand Down
4 changes: 2 additions & 2 deletions memacs/tests/ical_test.py
Expand Up @@ -17,7 +17,7 @@ def test_all(self):
#for d in range(len(data)):
# print "self.assertEqual(\n\tdata[%d],\n\t \"%s\")" % \
# (d, data[d])

self.assertEqual(
data[0],
"** <2012-05-28 Mon>--<2012-05-28 Mon> Whit Monday")
Expand Down Expand Up @@ -581,4 +581,4 @@ def test_all(self):
" :ID: fe605142ace6ab6268fc672fccece05219c17148")
self.assertEqual(
data[187],
" :END:")
" :END:")

0 comments on commit 5c27510

Please sign in to comment.