diff --git a/python/build/groovy/org/jetbrains/intellij/build/pycharm/PyCharmCommunityProperties.groovy b/python/build/groovy/org/jetbrains/intellij/build/pycharm/PyCharmCommunityProperties.groovy index 0202760dc72d..ee1f23f702d8 100644 --- a/python/build/groovy/org/jetbrains/intellij/build/pycharm/PyCharmCommunityProperties.groovy +++ b/python/build/groovy/org/jetbrains/intellij/build/pycharm/PyCharmCommunityProperties.groovy @@ -79,7 +79,16 @@ class PyCharmCommunityProperties extends PyCharmPropertiesBase { @Override LinuxDistributionCustomizer createLinuxCustomizer(String projectHome) { - return new PyCharmCommunityLinuxDistributionCustomizer(projectHome) + return new PyCharmCommunityLinuxDistributionCustomizer(projectHome) { + @Override + String getSnapName() { return "pycharm-community" } + + @Override + String getSnapDescription() { + return "Python IDE for professional developers. Save time while PyCharm takes care of the routine. " + \ + "Focus on bigger things and embrace the keyboard-centric approach to get the most of PyCharm’s many productivity features." + } + } } @Override @@ -112,10 +121,6 @@ class PyCharmCommunityLinuxDistributionCustomizer extends LinuxDistributionCusto PyCharmCommunityLinuxDistributionCustomizer(projectHome) { iconPngPath = "$projectHome/python/resources/PyCharmCore128.png" iconPngPathForEAP = "$projectHome/python/resources/PyCharmCore128_EAP.png" - snapName = "pycharm-community" - snapDescription = - "Python IDE for professional developers. Save time while PyCharm takes care of the routine. " - "Focus on bigger things and embrace the keyboard-centric approach to get the most of PyCharm’s many productivity features." } @Override