Skip to content

Commit c6efc8f

Browse files
committed
Update clipboard_pygame.py
1 parent 2504a35 commit c6efc8f

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

kivy/core/clipboard/clipboard_pygame.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,10 @@ def init(self):
3030

3131
def get(self, mimetype='text/plain'):
3232
self.init()
33-
<<<<<<< Updated upstream
3433
text = pygame.scrap.get(mimetype)
3534
if PY2:
3635
text = text.encode('utf-8')
37-
3836
return text
39-
=======
40-
return pygame.scrap.get(mimetype).encode('utf-8')
41-
>>>>>>> Stashed changes
4237

4338
def put(self, data, mimetype='text/plain'):
4439
self.init()

0 commit comments

Comments
 (0)