Skip to content

Instantly share code, notes, and snippets.

@hawkowl
Created May 1, 2015 11:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hawkowl/d1c7e13997fa6553efc4 to your computer and use it in GitHub Desktop.
Save hawkowl/d1c7e13997fa6553efc4 to your computer and use it in GitHub Desktop.
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