Created
November 22, 2012 13:08
-
-
Save radiosilence/4131102 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- Mimeo.py.old 2012-11-22 13:05:48.340854666 +0000 | |
+++ Mimeo.py 2012-11-22 13:06:13.363724740 +0000 | |
@@ -1219,6 +1219,10 @@ | |
try: | |
desktop.load() | |
+ # Skip this desktop if it has no Desktop Entry Group | |
+ if not DEG in desktop: | |
+ continue | |
+ | |
except IOError as e: | |
self.ioerror_msg(fpath, e, True) | |
del desktops[basename] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment