Skip to content

Instantly share code, notes, and snippets.

@hawkowl
Created May 1, 2015 11:01
import platform
p = platform.linux_distribution()
if p[0] == "debian" and float(p[1]) > 7:
print "New Debian"
else:
print "Old Debian"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment